Skip to content

Commit 6e0ad9b

Browse files
author
Takashi Matsuo
authored
fix: remove failing test (#521)
fixes #519
1 parent 416ae1e commit 6e0ad9b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

authenticating-users/test/app.test.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,5 @@ describe('GET /', () => {
88
}),
99
it('should get Hello None', (done) => {
1010
request(app).get('/').expect('Hello undefined', done);
11-
}),
12-
it('should fail only in continuous and nightly build', (done) => {
13-
if (
14-
process.env.BUILD_TYPE === 'continuous' ||
15-
process.env.BUILD_TYPE === 'nightly'
16-
) {
17-
throw new Error('Intentionally failing in continuous build');
18-
}
19-
done();
2011
});
2112
});

0 commit comments

Comments
 (0)