Skip to content

Commit 866de13

Browse files
Merge pull request #307 from supertokens/fix-website-tests
Fix integration tests
2 parents 91e595c + 0b025a4 commit 866de13

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/frontendIntegration/main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ func callSTInit(enableAntiCsrf bool, enableJWT bool, jwtPropertyName string) {
248248
session.VerifySession(nil, simpleGet).ServeHTTP(rw, r)
249249
} else if r.URL.Path == "/check-rid" && r.Method == "GET" {
250250
session.VerifySession(nil, checkRID).ServeHTTP(rw, r)
251+
} else if r.URL.Path == "/check-rid-no-session" && r.Method == "GET" {
252+
checkRID(rw, r)
251253
} else if r.URL.Path == "/update-jwt" && r.Method == "GET" {
252254
session.VerifySession(nil, getJWT).ServeHTTP(rw, r)
253255
} else if r.URL.Path == "/update-jwt" && r.Method == "POST" {

0 commit comments

Comments
 (0)