This repository was archived by the owner on Apr 11, 2024. It is now read-only.
File tree 4 files changed +4
-4
lines changed
src/auth/session/storage/__tests__
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const dbName = 'shopitest';
15
15
16
16
// SORRY NOT SORRY. Docker containers can take quite a while to get ready,
17
17
// especially on CI. This is hopefully enough.
18
- jest . setTimeout ( 20000 ) ;
18
+ jest . setTimeout ( 25000 ) ;
19
19
20
20
describe ( 'MongoDBSessionStorage' , ( ) => {
21
21
let storage : MongoDBSessionStorage ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const dbURL = new URL('mysql://shopify:passify@localhost/shopitest');
14
14
15
15
// SORRY NOT SORRY. Docker containers can take quite a while to get ready,
16
16
// especially on CI. This is hopefully enough.
17
- jest . setTimeout ( 20000 ) ;
17
+ jest . setTimeout ( 25000 ) ;
18
18
19
19
describe ( 'MySQLSessionStorage' , ( ) => {
20
20
let storage : MySQLSessionStorage ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const dbURL = new URL('postgres://shopify:passify@localhost/shopitest');
14
14
15
15
// SORRY NOT SORRY. Docker containers can take quite a while to get ready,
16
16
// especially on CI. This is hopefully enough.
17
- jest . setTimeout ( 20000 ) ;
17
+ jest . setTimeout ( 25000 ) ;
18
18
19
19
describe ( 'PostgreSQLSessionStorage' , ( ) => {
20
20
let storage : PostgreSQLSessionStorage ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const dbURL = new URL('redis://shopify:passify@localhost/1');
14
14
15
15
// SORRY NOT SORRY. Docker containers can take quite a while to get ready,
16
16
// especially on CI. This is hopefully enough.
17
- jest . setTimeout ( 20000 ) ;
17
+ jest . setTimeout ( 25000 ) ;
18
18
19
19
describe ( 'RedisSessionStorage' , ( ) => {
20
20
let storage : RedisSessionStorage | undefined ;
You can’t perform that action at this time.
0 commit comments