File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ describe('UserModule E2E', () => {
39
39
1 ,
40
40
1 ,
41
41
AuthType . DEVICE ,
42
- 'abcd ' ,
42
+ 'auth1 ' ,
43
43
'UNDERGRADUATE' ,
44
44
) ;
45
45
46
- const user = await userService . byAuth ( AuthType . DEVICE , 'abcd ' ) ;
46
+ const user = await userService . byAuth ( AuthType . DEVICE , 'auth1 ' ) ;
47
47
expect ( user ) . toBeDefined ( ) ;
48
48
expect ( user ?. username ) . toContain ( 'guest' ) ;
49
49
} ) ;
@@ -58,11 +58,11 @@ describe('UserModule E2E', () => {
58
58
1 ,
59
59
1 ,
60
60
AuthType . DEVICE ,
61
- 'abcde ' ,
61
+ 'auth2 ' ,
62
62
'UNDERGRADUATE' ,
63
63
) ;
64
64
65
- const user = await userService . byAuth ( AuthType . DEVICE , 'abcde ' ) ;
65
+ const user = await userService . byAuth ( AuthType . DEVICE , 'auth2 ' ) ;
66
66
expect ( user ) . toBeDefined ( ) ;
67
67
await userService . deleteUser ( fullAbility , user ! ) ;
68
68
expect ( user ) . toBeNull ;
@@ -77,7 +77,7 @@ describe('UserModule E2E', () => {
77
77
1 ,
78
78
1 ,
79
79
AuthType . DEVICE ,
80
- 'abcdefg ' ,
80
+ 'auth3 ' ,
81
81
'UNDERGRADUATE' ,
82
82
) ;
83
83
let oldList = await userSer . getAllUserData ( ) ;
@@ -88,7 +88,7 @@ describe('UserModule E2E', () => {
88
88
1 ,
89
89
1 ,
90
90
AuthType . DEVICE ,
91
- 'abcdefg ' ,
91
+ 'auth4 ' ,
92
92
'UNDERGRADUATE' ,
93
93
) ;
94
94
let newList = await userSer . getAllUserData ( ) ;
You can’t perform that action at this time.
0 commit comments