Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

chore: roll test runner to 0.9.22 #145

Merged
merged 1 commit into from Oct 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: '10.x'
- uses: microsoft/playwright-github-action@v1
- name: Install dependencies and build
run: npm ci
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we keep ci there?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should. It is in the way for no good reason all the time.

run: npm i
- name: lint
run: npm run lint
- name: build
Expand Down
82 changes: 41 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -28,7 +28,7 @@
"@playwright/test-runner": "0.9.x"
},
"devDependencies": {
"@playwright/test-runner": "0.9.21",
"@playwright/test-runner": "0.9.22",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
Expand Down
12 changes: 12 additions & 0 deletions src/index.ts
Expand Up @@ -172,3 +172,15 @@ fixtures.overrideTestFixtures({
await runTest(browserName + '-' + platform);
}
});

export const it = fixtures.it;
export const fit = fixtures.fit;
export const xit = fixtures.xit;
export const test = fixtures.test;
export const describe = fixtures.describe;
export const fdescribe = fixtures.fdescribe;
export const xdescribe = fixtures.xdescribe;
export const beforeEach = fixtures.beforeEach;
export const afterEach = fixtures.afterEach;
export const beforeAll = fixtures.beforeAll;
export const afterAll = fixtures.afterAll;