Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Dec 14, 2023
1 parent a23ecbc commit 927e242
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/resources/projects.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tests/resources/units.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 927e242

Please sign in to comment.