1.0.0-3 • Published 5 years ago

vue-test-chai v1.0.0-3

Weekly downloads
244
License
MIT
Repository
github
Last release
5 years ago

Chai plugin for Vue Test utils NPM version Build Status

This plugin adds assertions and language chains to chai for the Vue Test Utils.

Please note: This package is in early development. Please create an issue, if you experience any bugs or if you are missing a feature.

Why?

These custom assertions make your tests more readable and they provide better error messages in case of an error.

Example:

const wrapper = mount(MyComponent)

// instead of
expect(wrapper.attributes().id).to.equal('foo')
expect(wrapper.isEmpty()).to.be.false
// in case of an error it would throw:
// 1. AssertionError: expected 'bar' to equal 'foo'
// 2. AssertionError: expected true to be false

// write
expect(wrapper).to.have.attributes('id').which.equals('foo')
expect(wrapper).not.to.be.empty
// in case of an error it would throw:
// 1. AssertionError: Wrapper attributes: expected { Object (class) } to have property 'id'
// 2. AssertionError: expected { Object () } not to be empty, but it was

Installation

First install this package:

npm install --save-dev vue-test-chai

Then edit or create the setup script of your test runner (e.g. setup.js):

const chai = require('chai')
const vueTestChai = require('vue-test-chai')

chai.use(vueTestChai)

You can include any file in mocha using the --require flag.

Documentation

1.0.0-3

5 years ago

0.1.0-2

5 years ago

0.1.0-1

5 years ago

0.1.0-0

5 years ago

0.1.1-0

5 years ago