Skip to content

Commit 7b83135

Browse files
committed
updated repository name
1 parent 8c9d7f3 commit 7b83135

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/playwright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ jobs:
8787
destination_dir: ${{ steps.timestampid.outputs.timestamp }}
8888

8989
- name: Write URL in summary
90-
run: echo "### Test results (link available after 20 secs) - https://${{ github.repository_owner }}.github.io/${{ github.repository.name }}/${{ steps.timestampid.outputs.timestamp }}/" >> $GITHUB_STEP_SUMMARY
90+
run: echo "### Test results (link available after 20 secs) - https://${{ github.repository_owner }}.github.io/trello-typescript-playwright/${{ steps.timestampid.outputs.timestamp }}/" >> $GITHUB_STEP_SUMMARY

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
/* Run tests in files in parallel */
1010
fullyParallel: true,
1111
/* Fail the build on CI if you accidentally left test.only in the source code. */
12-
forbidOnly: false,
12+
forbidOnly: !!process.env.CI,
1313
/* Retry on CI only */
1414
retries: process.env.CI ? 2 : 0,
1515
/* Opt out of parallel tests on CI. */

tests/card.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { loggedUserWithCardFixture } from "../fixtures/loggedUserWithCardFixture";
22
import { loggedUserWithColumnFixture } from "../fixtures/loggedUserWithColumnFixture";
33

4-
loggedUserWithCardFixture.only("@TC-4, Verify the ability to delete a card", async ({ board, boardPage, card }) => {
4+
loggedUserWithCardFixture("@TC-4, Verify the ability to delete a card", async ({ board, boardPage, card }) => {
55
await boardPage.navigate(board.url);
66
await boardPage.column.card.clickOnCardByName(card.name);
77
await boardPage.column.card.cardEditor.sidebar.archieveOpenedCard();

0 commit comments

Comments
 (0)