We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf745b commit 100fe1eCopy full SHA for 100fe1e
x-pack/test/api_integration/apis/fleet/install.ts
@@ -6,11 +6,15 @@
6
7
import expect from '@kbn/expect';
8
import { FtrProviderContext } from '../../ftr_provider_context';
9
+import { setupIngest } from './agents/services';
10
-export default function ({ getService }: FtrProviderContext) {
11
+export default function (providerContext: FtrProviderContext) {
12
+ const { getService } = providerContext;
13
const supertest = getService('supertest');
14
15
describe('fleet_install', () => {
16
+ setupIngest(providerContext);
17
+
18
it('should return a 400 if we try download an install script for a not supported OS', async () => {
19
await supertest.get(`/api/ingest_manager/fleet/install/gameboy`).expect(400);
20
});
0 commit comments