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

Fix linting #3946

Merged
merged 1 commit into from
Jun 30, 2017
Merged
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
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