UNPKG

karma-story-reporter

Version:

A Karma plugin. Report results in BDD-style story format.

18 lines (12 loc) 295 B
describe("Initial spec", function() { 'use strict'; it("runs a test", function() { expect(':)').toMatch(/.*/); }); xit("skips a test", function() { expect(':)').toMatch(/.*/); }); // it("fails another test", function() { // expect(':)').not.toMatch(/.*/); // }); });