Skip to content

Commit

Permalink
update(ci): changes
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm committed Dec 12, 2024
1 parent 9a438e6 commit 242a336
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion playwright.ci.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default defineConfig({
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: false,
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 1,
/* Opt out of parallel tests on CI. */
Expand Down
2 changes: 1 addition & 1 deletion playwright/specs/01-pin-input.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test.describe("Create Account and Login Tests", () => {
const status = faker.lorem.sentence(3);
const pinNumber = "123456";

test.only("A1, A9, A11 - Enter valid PIN redirects to Main Page", async ({
test("A1, A9, A11 - Enter valid PIN redirects to Main Page", async ({
enterPinUserContext,
}) => {
const page = enterPinUserContext.page;
Expand Down

0 comments on commit 242a336

Please sign in to comment.