Skip to content

Commit

Permalink
skipped some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shashwatahalder01 committed Feb 9, 2024
1 parent de65243 commit 32a068c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/pw/e2e.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default defineConfig({
// forbidOnly : !!process.env.CI, /* Fail the build on CI if you accidentally left test-only in the source code. */
repeatEach: 1 /* The number of times to repeat each test, useful for debugging flaky tests. */,
retries: process.env.CI ? 1 : 0 /* The maximum number of retry attempts given to failed tests. */,
workers: process.env.CI ? 2 : 1 /* Opt out of parallel tests on CI. */,
workers: process.env.CI ? 4 : 1 /* Opt out of parallel tests on CI. */,
reportSlowTests: { max: 2, threshold: 25 } /* Whether to report slow test files. Pass null to disable this feature. */,
reporter: process.env.CI
? [
Expand Down
2 changes: 1 addition & 1 deletion tests/pw/tests/e2e/setting.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { payloads } from '@utils/payloads';

const { CI, CUSTOMER_ID, PRODUCT_ID } = process.env;

test.describe('Settings test', () => {
test.describe.skip('Settings test', () => {
let admin: SettingPage;
let vendor: SettingPage;
let customer: SettingPage;
Expand Down
2 changes: 1 addition & 1 deletion tests/pw/tests/e2e/settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { dbData } from '@utils/dbData';
import { dbUtils } from '@utils/dbUtils';
import { data } from '@utils/testData';

test.describe('Settings test', () => {
test.describe.skip('Settings test', () => {
let admin: SettingsPage;
let aPage: Page;

Expand Down

0 comments on commit 32a068c

Please sign in to comment.