From 927e24215cb28dfb592696d389215e77d8e31d66 Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Thu, 14 Dec 2023 16:42:47 -0500 Subject: [PATCH] fix: tests --- tests/resources/projects.spec.js | 2 +- tests/resources/units.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/resources/projects.spec.js b/tests/resources/projects.spec.js index 4d95ab01..2bfb3a7a 100644 --- a/tests/resources/projects.spec.js +++ b/tests/resources/projects.spec.js @@ -119,7 +119,7 @@ describe('Project Resource CRUD', function () { expect(projectsLimit2.data.length).to.equal(2); }).timeout(TEST_WAIT_TIME * 10); - it.only('finds a single result by warehouseProjectId', async function () { + it('finds a single result by warehouseProjectId', async function () { // ?warehouseProjectId=XXXX const projects = await testFixtures.getProjectByQuery({ warehouseProjectId: '7f3a656e-d21c-409f-ae38-f97c89f0ae66', diff --git a/tests/resources/units.spec.js b/tests/resources/units.spec.js index 85e84522..076309ef 100644 --- a/tests/resources/units.spec.js +++ b/tests/resources/units.spec.js @@ -115,7 +115,7 @@ describe('Units Resource CRUD', function () { expect(result.body.data.length).to.not.equal(1); }).timeout(TEST_WAIT_TIME * 10); - it.only('finds a single result by warehouseUnitId', async function () { + it('finds a single result by warehouseUnitId', async function () { // ?warehouseUnitId=XXXX const result = await supertest(app).get('/v1/units').query({ warehouseUnitId: response.warehouseUnitId,