Skip to content

Commit c2b6cad

Browse files
committed
test
1 parent 2778bae commit c2b6cad

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/platform-pull-request.yml

+2
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,5 @@ jobs:
147147
concurrency: 2
148148
- tests: versioning
149149
concurrency: 1
150+
- tests: failing
151+
concurrency: 1

frontend/e2e/tests/failing-test.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import {
2+
click,
3+
log,
4+
login,
5+
} from '../helpers.cafe'
6+
import { PASSWORD, E2E_USER } from '../config'
7+
8+
export default async function () {
9+
log('Login')
10+
await login(E2E_USER, PASSWORD)
11+
await click('#project-select-0')
12+
log('Fail')
13+
await click('#nonexistent')
14+
}

0 commit comments

Comments
 (0)