Skip to content

Commit

Permalink
remove non-trivial test
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Dec 18, 2023
1 parent 1a332f6 commit 9fd5b10
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions x-pack/test/api_integration/apis/security/api_keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,19 +137,5 @@ export default function ({ getService }: FtrProviderContext) {
});
});
});

describe('GET /internal/security/has_api_keys', () => {
it('should return false by default', async () => {
await supertest
.get('/internal/security/has_api_keys')
.set('kbn-xsrf', 'xxx')
.send()
.expect(200)
.then((response: Record<string, any>) => {
const payload = response.body;
expect(payload).to.eql({ hasApiKeys: false });
});
});
});
});
}

0 comments on commit 9fd5b10

Please sign in to comment.