Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanak-michal committed Apr 16, 2024
1 parent 5f2ab60 commit ed1e153
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,8 @@ jobs:
- name: Install dependencies
run: npm ci

# - name: Install Playwright Browsers
# run: npx playwright install --with-deps chromium
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium

- name: Run Playwright tests
run: npm run playwright
env:
HOME: /root
2 changes: 1 addition & 1 deletion e2e/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test('perform ThingsDB test', async ({ page }) => {
await expect(page).toHaveTitle("ThingsDB.js");

await page.evaluate(() => {
window["thingsdb"] = new window["ThingsDB"]();
window["thingsdb"] = new window["ThingsDB"]('ws://thingsdb:7681');
return window["thingsdb"].connect();
});

Expand Down

0 comments on commit ed1e153

Please sign in to comment.