diff --git a/authenticating-users/test/app.test.js b/authenticating-users/test/app.test.js index 7d20793b6..eb46f3739 100644 --- a/authenticating-users/test/app.test.js +++ b/authenticating-users/test/app.test.js @@ -8,14 +8,5 @@ describe('GET /', () => { }), it('should get Hello None', (done) => { request(app).get('/').expect('Hello undefined', done); - }), - it('should fail only in continuous and nightly build', (done) => { - if ( - process.env.BUILD_TYPE === 'continuous' || - process.env.BUILD_TYPE === 'nightly' - ) { - throw new Error('Intentionally failing in continuous build'); - } - done(); }); });