Detalhes do pacote

steal-jasmine

stealjs16MIT0.0.3

A package for Jasmine and StealJS

StealJS, Jasmine

readme (leia-me)

steal-jasmine

Provides an easy way to run Jasmine tests using StealJS.

Install

Install with npm:

npm install steal-jasmine --save-dev

Use

Add the Steal tag to your page:

<script src="node_modules/steal/steal.js"
  data-main="test/test"></script>

Then import steal-jasmine in yourtest/test.js file and write your tests:

import jasmineRequire from "steal-jasmine";

//Tests!
import foo from "bar";

it("A test", function(){
    expect(foo).toBe(true);
});

License

MIT