1.2.0 • Published 6 years ago

vuenit v1.2.0

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

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

1.2.0

6 years ago

1.1.2

6 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.0

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago