# qunit-jasmine-transform

> Transform Qunit tests to Jasmine

Latest version **0.4.0** (published 2017-03-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install qunit-jasmine-transform
pnpm add qunit-jasmine-transform
yarn add qunit-jasmine-transform
bun add qunit-jasmine-transform
```

Provides the command `qunit-jasmine-transform`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.0 |
| Published | 2017-03-17 |
| First published | 2017-01-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Sprout Social |
| Maintainers | wsbrunson |

## Links

- npm: https://www.npmjs.com/package/qunit-jasmine-transform
- Repository: https://github.com/sproutsocial/qunit-jasmine-transform
- Homepage: https://github.com/sproutsocial/qunit-jasmine-transform#readme
- Issues: https://github.com/sproutsocial/qunit-jasmine-transform/issues
- npm.io page: https://npm.io/package/qunit-jasmine-transform

## Dependencies (2)

- [nomnom](https://npm.io/package/nomnom.md) ^1.8.1
- [jscodeshift](https://npm.io/package/jscodeshift.md) ^0.3.30

## Recent versions

- 0.4.0 (latest) — 2017-03-17
- 0.3.1 — 2017-01-10
- 0.3.0 — 2017-01-10
- 0.2.1 — 2017-01-10
- 0.2.0 — 2017-01-10

## README

# qunit-jasmine-transform

Converts Qunit test files to use Jasmine syntax.

Currently works with this style of test:

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

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

Future version will support this style as well:

```javascript
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
```

---
_Source: https://npm.io/package/qunit-jasmine-transform · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
