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

Double timeouts on integration tests #2660

Merged
merged 1 commit into from Jan 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/integration/suite.spec.js
Expand Up @@ -5,7 +5,7 @@ var run = require('./helpers').runMocha;
var args = [];

describe('suite w/no callback', function () {
this.timeout(1000);
this.timeout(2000);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably pull this value out to a variable?

it('should throw a helpful error message when a callback for suite is not supplied', function (done) {
run('suite/suite-no-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand All @@ -17,7 +17,7 @@ describe('suite w/no callback', function () {
});

describe('skipped suite w/no callback', function () {
this.timeout(1000);
this.timeout(2000);
it('should not throw an error when a callback for skipped suite is not supplied', function (done) {
run('suite/suite-skipped-no-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand All @@ -30,7 +30,7 @@ describe('skipped suite w/no callback', function () {
});

describe('skipped suite w/ callback', function () {
this.timeout(1000);
this.timeout(2000);
it('should not throw an error when a callback for skipped suite is supplied', function (done) {
run('suite/suite-skipped-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand Down