Skip to content

Commit ed60518

Browse files
author
Robert Flack
committed
Support running wpt tests directly using --inject-script.
This uses wpt directly with the new --inject-script support for injecting polyfills described at: https://web-platform-tests.org/running-tests/testing-polyfills.html The previous custom webdriver approach is maintained for compatibility with saucelabs.
1 parent d8b95cb commit ed60518

7 files changed

+36
-53
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"build": "microbundle -f iife",
99
"dev": "run-all \"serve\" \" microbundle watch -f iife \"",
1010
"deploy": "npm run build",
11-
"test:simple": "./test/setup/wpt-repo.sh && node ./test/webdriver/wpt-server-cli.js",
12-
"test:simple-w": "test\\setup\\wpt-repo.sh.bat && node ./test/webdriver/wpt-server-cli.js",
13-
"test:webdriver": "./test/setup/wpt-repo.sh && node test/webdriver/index.js",
14-
"test:webdriver-w": "test\\setup\\wpt-repo.sh.bat && node test/webdriver/index.js"
11+
"test-setup": "node test/setup/checkout-wpt.mjs",
12+
"test:wpt": "npm run build && npm run test-setup && cd test && cd wpt && python wpt run --install-webdriver --inject-script ../../dist/scroll-timeline.js chrome scroll-animations",
13+
"test:simple": "npm run build && npm run test-setup && cd test && cd wpt && python wpt serve --inject-script ../../dist/scroll-timeline.js",
14+
"test:webdriver": "npm run test-setup && node test/webdriver/index.js"
1515
},
1616
"repository": {
1717
"type": "git",

run-server-locally.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@call config silent
2-
npm run test:simple-w
2+
npm run test:simple

run-tests-locally.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@call config silent
2-
npm run test:webdriver-w
2+
npm run test:webdriver

test/setup/checkout-wpt.mjs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env node
2+
3+
import path from 'path';
4+
import { fileURLToPath } from 'url';
5+
import { chdir, exit, env } from 'node:process';
6+
import { execSync } from 'node:child_process';
7+
import { existsSync } from 'node:fs';
8+
9+
const __filename = fileURLToPath(import.meta.url);
10+
const __dirname = path.dirname(__filename);
11+
const repoUrl = 'https://github.com/web-platform-tests/wpt.git';
12+
const checkoutDir = 'wpt';
13+
const command = 'npm install';
14+
const execEnv = { stdio: [0, 1, 2] };
15+
16+
chdir(__dirname);
17+
chdir('..');
18+
19+
if (existsSync(checkoutDir)) {
20+
console.log(`Checkout ${checkoutDir} already exists, updating`);
21+
execSync(`git pull --ff-only`, {...execEnv, cwd: path.resolve(`${__dirname}/../${checkoutDir}`)});
22+
exit(0);
23+
}
24+
25+
execSync(`git clone ${repoUrl}`, {...execEnv, cwd: path.resolve(`${__dirname}/..`)});
26+
console.warn('Ensure that you setup wpt for local test runs per published instructions: https://web-platform-tests.org/running-tests/from-local-system.html');
27+
console.log(`Checked out ${checkoutDir}`);
28+
29+
exit(0);

test/setup/wpt-repo.sh

-14
This file was deleted.

test/setup/wpt-repo.sh.bat

-32
This file was deleted.

0 commit comments

Comments
 (0)