Skip to content

Commit

Permalink
supertest -> request
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Oct 22, 2024
1 parent 4723ced commit 3d667a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function ({ getService }: FtrProviderContext) {
describe('health', () => {
afterEach(async () => {
// clean up after each test
return await supertest.delete('/api/sample_tasks').set('kbn-xsrf', 'xxx').expect(200);
return await request.delete('/api/sample_tasks').set('kbn-xsrf', 'xxx').expect(200);
});

it('should return basic configuration of task manager', async () => {
Expand Down

0 comments on commit 3d667a0

Please sign in to comment.