Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Dec 24, 2024
1 parent b1b0368 commit f565af9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const validateDocs = async (entrypointFile: string) => {

describe('openApi', () => {
it('Checks that entrypoint.yaml is valid', async () => {
expect(await validateDocs('x-pack/plugins/fleet/common/openapi/entrypoint.yaml')).toEqual(
'Entrypoint is valid'
);
expect(
await validateDocs('x-pack/platform/plugins/shared/fleet/common/openapi/entrypoint.yaml')
).toEqual('Entrypoint is valid');
});
});

0 comments on commit f565af9

Please sign in to comment.