Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct default report from jasmineStarted event #185

Merged
merged 1 commit into from
Jun 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/resources/node-example.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Spec started
Jasmine started

first suite
✓ should be ok
Expand Down
2 changes: 1 addition & 1 deletion spec/resources/node-protractor.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Spec started
Jasmine started

angularjs homepage
✓ should greet the named user
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/custom-print.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("spec reporter", () => {
},
outputs => {
expect(outputs.length).toEqual(0);
expect(customOutpouts).contains(/Spec started/);
expect(customOutpouts).contains(/Jasmine started/);
done();
}
);
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/custom-processor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("spec reporter", () => {
});
},
outputs => {
expect(outputs).contains(/Spec started TEST/);
expect(outputs).contains(/Jasmine started TEST/);
done();
}
);
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/default-display.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("with default display", () => {
});
},
outputs => {
expect(outputs).contains(/Spec started/);
expect(outputs).contains(/Jasmine started/);
done();
}
);
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/display-processor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("spec reporter", () => {
});
},
outputs => {
expect(outputs).contains(/Spec started/);
expect(outputs).contains(/Jasmine started/);
done();
}
);
Expand Down
2 changes: 1 addition & 1 deletion src/processors/default-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class DefaultProcessor extends DisplayProcessor {
}

public displayJasmineStarted(): string {
return "Spec started";
return "Jasmine started";
}

public displaySuite(suite: CustomReporterResult): string {
Expand Down