Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix failing test
  • Loading branch information
stephtr committed Apr 5, 2018
commit 3b71e7e213b7004081ad4d44814854aebaec388e
4 changes: 2 additions & 2 deletions packages/jest-editor-support/src/__tests__/runner.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ describe('Runner', () => {
it('calls createProcess with the --coverage arg when provided', () => {
const expected = '--coverage';

const workspace: any = { collectCoverage: true };
const workspace: any = {collectCoverage: true};
const options = {};
const sut = new Runner(workspace, options);
sut.start(false);
Expand All @@ -196,7 +196,7 @@ describe('Runner', () => {
it('calls createProcess with the ---no-coverage arg when provided and false', () => {
const expected = '--no-coverage';

const workspace: any = { collectCoverage: false };
const workspace: any = {collectCoverage: false};
const options = {};
const sut = new Runner(workspace, options);
sut.start(false);
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-editor-support/src/project_workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class ProjectWorkspace {

/**
* Whether test coverage should be (automatically) collected.
*
*
* @type {boolean}
*/
collectCoverage: ?boolean;
Expand Down