Skip to content

Commit 85dbfe7

Browse files
chore(ci): enable windows runner
1 parent 484339d commit 85dbfe7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
os:
17-
- macos-13
17+
- macos-14
1818
- ubuntu-22.04
19-
# - windows-2022
19+
- windows-2022
2020
fail-fast: false
2121
runs-on: ${{ matrix.os }}
2222
steps:

index.test.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('NW.js Selenium test suite example', async () => {
3838
const textElement = await driver.findElement(selenium.By.id('test'));
3939
const text = await textElement.getText();
4040
expect(text).toEqual('world');
41-
});
41+
}, Infinity);
4242

4343
afterAll(async function () {
4444
await driver.quit();

0 commit comments

Comments
 (0)