0.4.0 • Published 7 years ago

qunit-jasmine-transform v0.4.0

Weekly downloads
15
License
MIT
Repository
github
Last release
7 years ago

qunit-jasmine-transform

Converts Qunit test files to use Jasmine syntax.

Currently works with this style of test:

import { test, ok as qunitModule } from 'qunit'

test('thing', () => {
  ok(thing1, 'thing1 is true')
})

Future version will support this style as well:

import Qunit from 'qunit'

Qunit.test('thing', () => {
  Qunit.ok(thing1, 'thing1 is true')
})

How to use

npm install -g qunit-jasmine-transform

qunit-jasmine-transform PATH_TO_TEST

Examples

qunit-jasmine-transform ./tests/file.test.js

qunit-jasmine-transform ./tests/**/*.test.js
0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago