@@ -24,7 +24,7 @@ describe("generateAuthUrl", () => {
24
24
const result = await generateAuthUrl (
25
25
domain ,
26
26
IssuerRouteTypes . login ,
27
- options
27
+ options ,
28
28
) ;
29
29
const nonce = result . url . searchParams . get ( "nonce" ) ;
30
30
expect ( nonce ) . not . toBeNull ( ) ;
@@ -53,7 +53,7 @@ describe("generateAuthUrl", () => {
53
53
const result = await generateAuthUrl (
54
54
domain ,
55
55
IssuerRouteTypes . register ,
56
- options
56
+ options ,
57
57
) ;
58
58
const nonce = result . url . searchParams . get ( "nonce" ) ;
59
59
expect ( nonce ) . not . toBeNull ( ) ;
@@ -81,7 +81,7 @@ describe("generateAuthUrl", () => {
81
81
const result = await generateAuthUrl (
82
82
domain ,
83
83
IssuerRouteTypes . login ,
84
- options
84
+ options ,
85
85
) ;
86
86
const nonce = result . url . searchParams . get ( "nonce" ) ;
87
87
expect ( nonce ) . not . toBeNull ( ) ;
@@ -106,7 +106,7 @@ describe("generateAuthUrl", () => {
106
106
const result = await generateAuthUrl (
107
107
domain ,
108
108
IssuerRouteTypes . login ,
109
- options
109
+ options ,
110
110
) ;
111
111
const nonce = result . url . searchParams . get ( "nonce" ) ;
112
112
expect ( nonce ) . not . toBeNull ( ) ;
@@ -134,7 +134,7 @@ describe("generateAuthUrl", () => {
134
134
const result = await generateAuthUrl (
135
135
domain ,
136
136
IssuerRouteTypes . login ,
137
- options
137
+ options ,
138
138
) ;
139
139
const nonce = result . url . searchParams . get ( "nonce" ) ;
140
140
expect ( nonce ) . not . toBeNull ( ) ;
0 commit comments