Skip to content

Commit

Permalink
Fix linting (jestjs#3946)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjesun authored and cpojer committed Jun 30, 2017
1 parent 68d747d commit 9426521
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const testResult = {

let DefaultReporter;
let stdout;
let stderr;

let oldIsTTY;
let oldStderr;
Expand All @@ -39,24 +38,24 @@ beforeEach(() => {
// fake reporters created while testing to mess with the real output of the
// tests itself.
process.stdin.isTTY = true;
process.stderr.write = jest.fn();
stdout = process.stdout.write = jest.fn();
stderr = process.stderr.write = jest.fn();

DefaultReporter = require('../default_reporter');
});

afterEach(() => {
process.stdin.isTTY = oldIsTTY;
process.stdout.write = oldStdout;
process.stderr.write = oldStderr;
process.stdout.write = oldStdout;
});

test('normal output, everything goes to stdout', () => {
const reporter = new DefaultReporter({});

reporter.onRunStart(aggregatedResults, options);
reporter.onTestStart(testCase);
reporter.onTestResult(testCase, testResult, aggregatedResults);;
reporter.onTestResult(testCase, testResult, aggregatedResults);
reporter.onRunComplete();

jest.runAllTimers();
Expand All @@ -69,7 +68,7 @@ test('when using stderr as output, no stdout call is made', () => {

reporter.onRunStart(aggregatedResults, options);
reporter.onTestStart(testCase);
reporter.onTestResult(testCase, testResult, aggregatedResults);;
reporter.onTestResult(testCase, testResult, aggregatedResults);
reporter.onRunComplete();

jest.runAllTimers();
Expand Down

0 comments on commit 9426521

Please sign in to comment.