0.0.3 • Published 6 years ago
aria-test v0.0.3
aria-test
Simple testing tools, provides pre define configuration
Installation
npm install --save-dev aria-testSetup
create
karma.conf.tsin your root folder of your appimport { karmaConfig } from 'aria-test' import { alias } from 'aria-build' const vue = require('rollup-plugin-vue') export default karmaConfig({ frameworks: ['mocha', 'chai'], files: [ 'tests/**/*.spec.js' ], rollup: { custom: true, plugins: [ alias({ vue: 'node_modules/vue/dist/vue.js' }), vue() ] } })add npm scripts
"test": "karma start"- Run your test
npm test