0.0.5 • Published 11 years ago

karma-buster-assertions-plugin v0.0.5

Weekly downloads
13
License
-
Repository
github
Last release
11 years ago

karma-buster-assertions-plugin

Really simple plugin for using buster-assertions with Karma

Instalation

$ npm install karma-buster-assertion-plugin --save-dev

Add buster-assertions` as a framework:

frameworks: ['buster-assertions']

Then make sure you configure the karma-buster-assertions plugin.

plugins: [
	'karma-buster-assertions-plugin'
]

Viola, you can now enjoy the assertions awesomeness from Buster in the comfort of your very own Karma-runner!

...
var assert = buster.assertions.assert;
...
assert.isTrue(true)
...