Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

aelbore/aria-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version License: MIT

aria-vue

Simple testing tools for vuejs

Note:

If you are using Vite 2.x, Please check https://github.com/aelbore/vite-plugin-test

Installation

  npm install --save-dev aria-vue aria-mocha puppeteer

Example Code

  • npm install
  • npm run build
  • cd example
  • npm test

Usage

aria-vue --help

  Usage
    $ aria-vue [options]

  Options
    -p, --port       port to use default(3000)
    -d, --dir        root directory of test files (default test)
    -w --watch       enable watch (default false)
    -H --headless    run test(s) in headless  (default false)
    --script         scripts or helper scripts to load before setup
    --path           virtual path for your html reporter
    --html           path of your index.html file
    -v, --version    Displays current version
    -h, --help       Displays this message

  Examples
    $ aria-vue -w -H --script ./test/plugin.js
    $ aria-vue --watch --path my-virtual-path --script ./test/plugin.js
    $ aria-vue --path test-ui --html ./test/index.html --script ./test/plugins.js

Plugin usage

  • Create vite.config.test.js file
import { createVueTestPlugin } from 'aria-vue'

export default  {
  plugins: [  
    createVueTestPlugin({
      script: './test/plugins.js',
      watch: true
    })
  ]
}
  • vite --config vite.config.test.js