Skip to content

Commit

Permalink
Added parseable ENV vars
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen5959 committed Nov 4, 2024
1 parent fdf03c5 commit 6a45b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
run: pnpm run dev &
env:
PORT: 3001
VITE_PARSEABLE_URL: 'https://demo.parseable.com'
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion tests/login.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test';

test('has title', async ({ page }) => {
await page.goto('https://demo.parseable.com');
await page.goto('http://localhost:3001');

await expect(page).toHaveTitle(/Parseable | Login/);
});

0 comments on commit 6a45b86

Please sign in to comment.