File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " Python: Flask, supertokens-website tests" ,
6
+ "type" : " python" ,
7
+ "request" : " launch" ,
8
+ "program" : " ${workspaceFolder}/tests/frontendIntegration/flask-server/app.py" ,
9
+ "args" : [
10
+ " --port" ,
11
+ " 8080"
12
+ ],
13
+ "cwd" : " ${workspaceFolder}/tests/frontendIntegration/flask-server" ,
14
+ "env" : {
15
+ "FLASK_DEBUG" : " 1"
16
+ },
17
+ "jinja" : true
18
+ }
19
+ ]
20
+ }
Original file line number Diff line number Diff line change @@ -325,6 +325,9 @@ def reset():
325
325
environ ["SUPERTOKENS_ENV" ] != "testing"
326
326
):
327
327
raise_general_exception ("calling testing function in non testing env" )
328
+ from supertokens_python .recipe .usermetadata .recipe import UserMetadataRecipe
329
+
330
+ UserMetadataRecipe .reset ()
328
331
Querier .reset ()
329
332
Supertokens .__instance = None
330
333
You can’t perform that action at this time.
0 commit comments