Add a test for scripting on Windows (#3858)

* Add a test for scripting on Windows
This commit is contained in:
Peter Hedenskog 2023-05-25 13:28:54 +02:00 committed by GitHub
parent b110cef0e7
commit 2f39a1993b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -26,4 +26,7 @@ jobs:
- name: Run Edge test - name: Run Edge test
run: node bin/sitespeed.js -b edge https://www.sitespeed.io/ run: node bin/sitespeed.js -b edge https://www.sitespeed.io/
shell: cmd shell: cmd
- name: Run Edge test with scripting
run: node bin/sitespeed.js -b edge --multi test/prepostscripts/multiWindows.cjs -n 1
shell: cmd

View File

@ -0,0 +1,3 @@
module.exports = async function (context, commands) {
return commands.measure.start('https://www.sitespeed.io/');
};