We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a0a15 commit ec5ef61Copy full SHA for ec5ef61
apps/axiom-e2e/src/index.spec.ts
@@ -10,7 +10,23 @@ export function startLoggedOut() {
10
))
11
}
12
13
-describe('Hacker', () => {
+describe('When a Hacker', () => {
14
+ describe('navigates to axiom', () => {
15
+ it('they should be re-directed to portal', async ({ actor }) => {
16
+ await actor.attemptsTo(
17
+ Navigate.to('/'),
18
+ )
19
+ })
20
21
+
22
+ describe('navigates to portal', () => {
23
+ it('they should see the login screen', async ({ actor }) => {
24
25
+ Navigate.to('portal.cuhacking.ca'),
26
27
28
29
30
it('should be able to log in with LinkedIn', async ({ actor }) => {
31
await actor.attemptsTo(
32
)
0 commit comments