Skip to content

Commit

Permalink
feat(lab): add UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arein committed Dec 17, 2023
1 parent 10bc238 commit 879fd26
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ui_tests.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: UI Tests

on:
push:
branches: [ "V3" ]
on:
push:
branches: ['V3']
paths-ignore:
- "**.md"
- '**.md'

pull_request:
branches: [ "V3" ]
branches: ['V3']
paths-ignore:
- "**.md"
- '**.md'

concurrency:
# Support push/pr as event types with different behaviors each:
Expand Down
3 changes: 1 addition & 2 deletions apps/laboratory/tests/shared/pages/ModalPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import { LOCAL_LABS_URL } from '../constants'
export class ModalPage {
private readonly baseURL = LOCAL_LABS_URL

constructor(public readonly page: Page) {
}
constructor(public readonly page: Page) {}

async load() {
await this.page.goto(this.baseURL)
Expand Down

0 comments on commit 879fd26

Please sign in to comment.