From 92e4d7c0474727693ca7e8401dded668dd0e4b2e Mon Sep 17 00:00:00 2001 From: Mark Moffat Date: Sat, 15 Jun 2019 10:26:27 +0930 Subject: [PATCH] Remove only. Whoops. --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index 94f9f2c..f037b46 100644 --- a/test/test.js +++ b/test/test.js @@ -179,7 +179,7 @@ test.serial('[Success] Search products', async t => { t.deepEqual(res.body.length, 2); }); -test.serial.only('[Success] Check for sitemap.xml', async t => { +test.serial('[Success] Check for sitemap.xml', async t => { const res = await request .get('/sitemap.xml') .expect(200); @@ -192,7 +192,7 @@ test.serial.only('[Success] Check for sitemap.xml', async t => { t.deepEqual(res.text.substring(0, 5), ' { +test.serial('[Success] Create a customer', async t => { const customer = { email: 'sarah.jones@test.com', firstName: 'Sarah', @@ -214,7 +214,7 @@ test.serial.only('[Success] Create a customer', async t => { t.deepEqual(res.body.message, 'Successfully logged in'); }); -test.serial.only('[Fail] Try create a duplicate customer', async t => { +test.serial('[Fail] Try create a duplicate customer', async t => { const customer = { email: 'sarah.jones@test.com', firstName: 'Sarah',