mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
supertest -> request
This commit is contained in:
parent
4723ced751
commit
3d667a0d13
1 changed files with 1 additions and 1 deletions
|
@ -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 () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue