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', () => {
7272 } ) ;
7373} ) ;
7474
75- describe ( '/api/verifyUser' , ( ) => {
75+ xdescribe ( '/api/verifyUser' , ( ) => {
7676 it ( 'responds with 200, content-type JSON, and correct body' , async ( ) => {
7777 const response = await request ( server ) . post ( '/api/verifyUser' ) . send ( {
7878 email : TEST_USER_EMAIL ,
@@ -128,7 +128,7 @@ describe('/api/saveSchema', () => {
128128 } ) ;
129129} ) ;
130130
131- describe ( '/api/retrieveSchema' , ( ) => {
131+ xdescribe ( '/api/retrieveSchema' , ( ) => {
132132 it ( 'responds with 200, content-type JSON, and correct body' , async ( ) => {
133133 const response = await request ( server ) . get ( `/api/retrieveSchema/${ TEST_USER_EMAIL } ` ) ;
134134 expect ( response . status ) . toBe ( 200 ) ;
@@ -163,7 +163,7 @@ xdescribe('/api/sql/postgres/schema', () => {
163163 } ) ;
164164} ) ;
165165
166- xdescribe ( '/api/sql/mysql/schema' , ( ) => {
166+ describe ( '/api/sql/mysql/schema' , ( ) => {
167167 const mysqlDB = {
168168 db_type : 'mysql' ,
169169 database_link : MYSQL_TEST_URL ,
You can’t perform that action at this time.
0 commit comments