diff --git a/Meadowlark-js/tests/e2e/scenarios/SchemaValidation.test.ts b/Meadowlark-js/tests/e2e/scenarios/SchemaValidation.test.ts index 8fa8d539..4959f3af 100644 --- a/Meadowlark-js/tests/e2e/scenarios/SchemaValidation.test.ts +++ b/Meadowlark-js/tests/e2e/scenarios/SchemaValidation.test.ts @@ -376,6 +376,12 @@ describe('When performing crud operations with extraneous elements with allow ov }); }); + afterAll(async () => { + await rootURLRequest() + .delete(resourceLocation) + .auth(await getAccessToken('host'), { type: 'bearer' }); + }); + it('returns 400', () => { expect(resourceResponse.statusCode).toBe(400); });