Skip to content

Commit 504bd87

Browse files
committed
fixed rspecs
1 parent 4f214e9 commit 504bd87

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

test/unit/bin/helpers/sync/failedSpecDetails.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,6 @@ describe("#getSpecStatus", () => {
9696
expect(specDetails.getSpecStatus(specStatus)).to.eq(response);
9797
});
9898

99-
it("returns passed_with_pending in blueBright if specStatus is passed_with_pending", () => {
100-
let specStatus = "passed_with_pending";
101-
let response = chalk.blueBright(specStatus);
102-
expect(specDetails.getSpecStatus(specStatus)).to.eq(response);
103-
});
104-
10599
it("returns skipped in blueBright if specStatus is skipped", () => {
106100
let specStatus = "skipped";
107101
let response = chalk.blueBright(specStatus);

test/unit/bin/helpers/sync/specSummary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ describe("printSpecsRunSummary", () => {
4646
var loggerInfoSpy = sinon.spy(logger, 'info');
4747

4848
specSummary.printSpecsRunSummary(data, machines);
49-
sinon.assert.calledWith(loggerInfoSpy, 'Total tests: 4, passed: 1, failed: 2, skipped: 1, pending: 0');
49+
sinon.assert.calledWith(loggerInfoSpy, 'Total tests: 4, passed: 1, failed: 2, skipped: 1, passed_with_skipped: 0, pending: 0');
5050
sinon.assert.calledWith(loggerInfoSpy, `Done in ${time / 1000} seconds using ${machines} machines\n`);
5151

5252
loggerInfoSpy.restore();

0 commit comments

Comments
 (0)