jasmine-bamboo-reporter
Version:
A reporter for Jasmine which produces a report compatible with Atlassian Bamboo Mocha Test Parser.
16 lines (14 loc) • 798 B
JavaScript
describe("pass suite 1", function () {
it("should pass once", function () { expect(true).toBeTruthy; } );
it("should pass twice", function () { expect(true).toBeTruthy; } );
it("should pass thrice", function () { expect(true).toBeTruthy; } );
it("should pass mice", function () { expect(true).toBeTruthy; } );
it("should pass lice", function () { expect(true).toBeTruthy; } );
it("should pass dice", function () { expect(true).toBeTruthy; } );
it("should pass septa-ice", function () { expect(true).toBeTruthy; } );
});
describe("pass suite 2", function () {
it("should pass octopus", function () { expect(true).toBeTruthy; } );
it("should pass eat sushi", function () { expect(true).toBeTruthy; } );
it("should visit thailand", function () { expect(true).toBeTruthy; } );
});