File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ describe('/api/userRegistration', () => {
72
72
} ) ;
73
73
} ) ;
74
74
75
- describe ( '/api/verifyUser' , ( ) => {
75
+ xdescribe ( '/api/verifyUser' , ( ) => {
76
76
it ( 'responds with 200, content-type JSON, and correct body' , async ( ) => {
77
77
const response = await request ( server ) . post ( '/api/verifyUser' ) . send ( {
78
78
email : TEST_USER_EMAIL ,
@@ -128,7 +128,7 @@ describe('/api/saveSchema', () => {
128
128
} ) ;
129
129
} ) ;
130
130
131
- describe ( '/api/retrieveSchema' , ( ) => {
131
+ xdescribe ( '/api/retrieveSchema' , ( ) => {
132
132
it ( 'responds with 200, content-type JSON, and correct body' , async ( ) => {
133
133
const response = await request ( server ) . get ( `/api/retrieveSchema/${ TEST_USER_EMAIL } ` ) ;
134
134
expect ( response . status ) . toBe ( 200 ) ;
@@ -163,7 +163,7 @@ xdescribe('/api/sql/postgres/schema', () => {
163
163
} ) ;
164
164
} ) ;
165
165
166
- xdescribe ( '/api/sql/mysql/schema' , ( ) => {
166
+ describe ( '/api/sql/mysql/schema' , ( ) => {
167
167
const mysqlDB = {
168
168
db_type : 'mysql' ,
169
169
database_link : MYSQL_TEST_URL ,
You can’t perform that action at this time.
0 commit comments