vuenit

1.2.0 • Public • Published

vuenit

Vue Unit Test Helpers

npm version Build Status Code Climate Test Coverage

Vuenit is a testing utility that offers a number of useful methods to make testing Vue applications easier:

  • Easily mount Vue components
  • Test directives
  • Search the DOM for component instances
  • Inject dependencies into components
  • Test slots
  • Update data and props on the fly
  • Shallow rendering
  • Mocked versions of Vuex, Vue-Router, and a $http module to make testing with dependencies easier
npm install vuenit --save-dev
import {mount, mockRouter, mockHttp, mockStore} from 'vuenit';
import c from 'path/to/component';
 
const {$router} = mockRouter();
const $http = mockHttp();
const $store = mockStore();
 
const options = {
  inject : { $router, $http, $store },
  props : { userId : 'x4' },
  stubComponents : true
};
 
const vm = mount(c, options);

Vuenit has a huge array of configuration options for different testing scenarios. For full documentation, see https://jackmellis.gitbooks.io/vuenit/content

/vuenit/

    Package Sidebar

    Install

    npm i vuenit

    Weekly Downloads

    3

    Version

    1.2.0

    License

    ISC

    Unpacked Size

    49.7 kB

    Total Files

    19

    Last publish

    Collaborators

    • jackmellis