We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d94d20c commit d7df0daCopy full SHA for d7df0da
1 file changed
x-pack/test/licensing_plugin/legacy/updates.ts
@@ -50,9 +50,7 @@ export default function(ftrContext: FtrProviderContext) {
50
await scenario.startBasic();
51
await scenario.waitForPluginToDetectLicenseUpdate();
52
53
- const { body: legacyBasicLicense, header: legacyBasicLicenseHeaders } = await supertest
54
- .get('/api/xpack/v1/info')
55
- .expect(200);
+ const { body: legacyBasicLicense } = await supertest.get('/api/xpack/v1/info').expect(200);
56
expect(legacyBasicLicense.license?.type).to.be('basic');
57
expect(legacyBasicLicense.features).to.have.property('security');
58
0 commit comments