Skip to content

Commit

Permalink
[Fleet] Renable skipped test for limited packages (#120293)
Browse files Browse the repository at this point in the history
* Renable skipped test for limited packages

* Try with newer endpoint package version. Test pass locally...
  • Loading branch information
jen-huang authored Dec 3, 2021
1 parent 7fb9dee commit 80660f1
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ export default function (providerContext: FtrProviderContext) {
.expect(400);
});

// https://github.com/elastic/kibana/issues/118257
it.skip('should not allow multiple limited packages on the same agent policy', async function () {
it('should not allow multiple limited packages on the same agent policy', async function () {
await supertest
.post(`/api/fleet/package_policies`)
.set('kbn-xsrf', 'xxxx')
Expand All @@ -215,7 +214,7 @@ export default function (providerContext: FtrProviderContext) {
package: {
name: 'endpoint',
title: 'Endpoint',
version: '0.13.0',
version: '1.3.0-dev.0',
},
})
.expect(200);
Expand All @@ -233,7 +232,7 @@ export default function (providerContext: FtrProviderContext) {
package: {
name: 'endpoint',
title: 'Endpoint',
version: '0.13.0',
version: '1.3.0-dev.0',
},
})
.expect(400);
Expand Down

0 comments on commit 80660f1

Please sign in to comment.