Skip to content

Commit

Permalink
renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
okep committed Oct 1, 2024
1 parent a2fa494 commit 84d3ae3
Show file tree
Hide file tree
Showing 296 changed files with 2,152 additions and 2,173 deletions.
4 changes: 2 additions & 2 deletions examples/github-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "github-api",
"version": "0.0.1",
"scripts": {
"test": "playwright test"
"test": "pw-recorder test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.17.1"
"@okep/test": "^1.17.1"
}
}
2 changes: 1 addition & 1 deletion examples/github-api/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable notice/notice */

import { defineConfig } from '@playwright/test';
import { defineConfig } from '@okep/test';

/**
* See https://playwright.dev/docs/test-configuration.
Expand Down
2 changes: 1 addition & 1 deletion examples/github-api/tests/test-api.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* 3. Delete the repo.
*/

import { test, expect } from '@playwright/test';
import { test, expect } from '@okep/test';

const user = process.env.GITHUB_USER;
const repo = 'Test-Repo-1';
Expand Down
4 changes: 2 additions & 2 deletions examples/mock-battery/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test": "pw-recorder test",
"start": "http-server -c-1 -p 9900 demo-battery-api"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.19.1",
"@okep/test": "^1.19.1",
"http-server": "^14.1.0"
}
}
4 changes: 2 additions & 2 deletions examples/mock-filesystem/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test": "pw-recorder test",
"start": "http-server -c-1 -p 9900 src/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.19.1",
"@okep/test": "^1.19.1",
"http-server": "^14.1.0"
}
}
10 changes: 5 additions & 5 deletions examples/svgomg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "svgomg-tests",
"version": "0.0.1",
"scripts": {
"test": "playwright test",
"ctest": "playwright test --project=chromium",
"ftest": "playwright test --project=firefox",
"wtest": "playwright test --project=webkit"
"test": "pw-recorder test",
"ctest": "pw-recorder test --project=chromium",
"ftest": "pw-recorder test --project=firefox",
"wtest": "pw-recorder test --project=webkit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.17.1"
"@okep/test": "^1.17.1"
}
}
2 changes: 1 addition & 1 deletion examples/svgomg/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable notice/notice */

import { defineConfig, devices } from '@playwright/test';
import { defineConfig, devices } from '@okep/test';

/**
* See https://playwright.dev/docs/test-configuration.
Expand Down
2 changes: 1 addition & 1 deletion examples/svgomg/tests/example.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable notice/notice */

import { test, expect } from '@playwright/test';
import { test, expect } from '@okep/test';
import fs from 'fs';

test.describe.configure({ mode: 'parallel' });
Expand Down
10 changes: 5 additions & 5 deletions examples/todomvc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "todomvc-test",
"version": "0.0.1",
"scripts": {
"test": "playwright test",
"ctest": "playwright test --project=chromium",
"ftest": "playwright test --project=firefox",
"wtest": "playwright test --project=webkit"
"test": "pw-recorder test",
"ctest": "pw-recorder test --project=chromium",
"ftest": "pw-recorder test --project=firefox",
"wtest": "pw-recorder test --project=webkit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.38.0"
"@okep/test": "^1.38.0"
}
}
2 changes: 1 addition & 1 deletion examples/todomvc/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable notice/notice */

import { defineConfig, devices } from '@playwright/test';
import { defineConfig, devices } from '@okep/test';

/**
* See https://playwright.dev/docs/test-configuration.
Expand Down
4 changes: 2 additions & 2 deletions examples/todomvc/tests/integration.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable notice/notice */

import { test, expect } from '@playwright/test';
import type { Page } from '@playwright/test';
import { test, expect } from '@okep/test';
import type { Page } from '@okep/test';

test.describe.configure({ mode: 'parallel' });

Expand Down
Loading

0 comments on commit 84d3ae3

Please sign in to comment.