diff options
author | Julien Dessaux | 2023-10-28 00:26:01 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-10-28 00:26:01 +0200 |
commit | 63fc0ac8dd5702ca7f38d41fe0ca2ac21b7fbd55 (patch) | |
tree | 1793e4f36aa6d78eb200803776d8fd23b249e6d0 /tests/games.spec.js | |
parent | Updated dependencies (diff) | |
download | jeux-de-mots-63fc0ac8dd5702ca7f38d41fe0ca2ac21b7fbd55.tar.gz jeux-de-mots-63fc0ac8dd5702ca7f38d41fe0ca2ac21b7fbd55.tar.bz2 jeux-de-mots-63fc0ac8dd5702ca7f38d41fe0ca2ac21b7fbd55.zip |
Fixed flaky test
Diffstat (limited to 'tests/games.spec.js')
-rw-r--r-- | tests/games.spec.js | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/tests/games.spec.js b/tests/games.spec.js index 6ff8788..01e692e 100644 --- a/tests/games.spec.js +++ b/tests/games.spec.js @@ -3,23 +3,25 @@ import supertest from 'supertest'; import app from '../main.js'; -describe.concurrent('Games handlers tests', function() { - describe.concurrent('When not logged in', function() { - test('GET /games', async function() { await supertest(app).get('/games').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); - test('GET /games/1', async function() { await supertest(app).get('/games/1').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); - test('GET /games/2', async function() { await supertest(app).get('/games/2').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); +const request = supertest(app); + +describe('Games handlers tests', function() { + describe('When not logged in', function() { + test('GET /games', async function() { await request.get('/games').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); + test('GET /games/1', async function() { await request.get('/games/1').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); + test('GET /games/2', async function() { await request.get('/games/2').expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/login$/); }); }); - describe.concurrent('With valid credentials', function() { + describe('With valid credentials', function() { beforeEach(async function(ctx) { - const authResponse = await supertest(app).post('/login') + const authResponse = await request.post('/login') .send('username=Alice&password=Alice42!') .expect('Content-Type', /text\/plain/) .expect('set-cookie', /JDMSessionId=/) .expect(302, /Redirecting to \/games$/); ctx.cookie = authResponse.get('Set-Cookie'); }); - test('GET /games', async function(ctx) { await supertest(app).get('/games').set('Cookie', ctx.cookie).expect('Content-Type', /text\/html/).expect(200, /<td><a href="\/games\/1">Alice vs Bob<\/a><\/td>/); }); - test('GET /games/1', async function(ctx) { await supertest(app).get('/games/1').set('Cookie', ctx.cookie).expect('Content-Type', /text\/html/).expect(200, /<h2>Alice vs Bob<\/h2>/); }); - test('GET /games/2', async function(ctx) { await supertest(app).get('/games/2').set('Cookie', ctx.cookie).expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/games/); }); + test('GET /games', async function(ctx) { await request.get('/games').set('Cookie', ctx.cookie).expect('Content-Type', /text\/html/).expect(200, /<td><a href="\/games\/1">Alice vs Bob<\/a><\/td>/); }); + test('GET /games/1', async function(ctx) { await request.get('/games/1').set('Cookie', ctx.cookie).expect('Content-Type', /text\/html/).expect(200, /<h2>Alice vs Bob<\/h2>/); }); + test('GET /games/2', async function(ctx) { await request.get('/games/2').set('Cookie', ctx.cookie).expect('Content-Type', /text\/plain/).expect(302, /Redirecting to \/games/); }); }); }); |