Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
otociulis committed Dec 7, 2024
1 parent 10ccf66 commit b310da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integration_test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ on:
push:
branches: [main]


jobs:
integration-windows-test:
runs-on: windows-latest
steps:
- name: Github checkout
uses: actions/checkout@v4
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build/windows/app
with:
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/startup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { chromium } from '@playwright/test';
test('has title', async () => {
const browser = await chromium.connectOverCDP('http://127.0.0.1:9000');

expect(browser.isConnected()).toBeTruthy();
expect(browser.isConnected()).toBeTruthy();
expect(browser.contexts()).toBeGreaterThan(0);

const context = browser.contexts()[0];
const context = browser.contexts()[0];
const pages = context.pages();

expect(pages).toHaveLength(1);
Expand Down

0 comments on commit b310da5

Please sign in to comment.