Skip to content

Commit

Permalink
chore(test): skipping kubernetes e2e tests on linux ci (#8835)
Browse files Browse the repository at this point in the history
chore(test): skip kubernetes e2e on linux ci
Signed-off-by: Anton Misskii <[email protected]>
  • Loading branch information
amisskii authored Sep 11, 2024
1 parent d739ee9 commit b3ab669
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/playwright/src/specs/kubernetes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ test.afterAll(async ({ runner, page }) => {
});

test.describe('Kubernetes resources End-to-End test', () => {
test.skip(
!!process.env.GITHUB_ACTIONS && process.env.RUNNER_OS === 'Linux',
'Tests suite should not run on Linux platform',
);
test('Kubernetes Nodes test', async ({ navigationBar }) => {
const nodesPage = await navigationBar.openKubernetesResources(KubernetesResources.Nodes);
await playExpect(nodesPage.heading).toBeVisible();
Expand Down

0 comments on commit b3ab669

Please sign in to comment.