Skip to content

Commit b061c2e

Browse files
committed
test update
1 parent 6f4a65b commit b061c2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/utils/auth.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const connection = await mysql.createConnection({
1111
database: "test",
1212
});
1313

14-
//await connection.query(`DROP TABLE user_session`);
15-
//await connection.query(`DROP TABLE user_key`);
16-
//await connection.query(`DROP TABLE user`);
14+
await connection.query(`DROP TABLE IF EXISTS user_session`);
15+
await connection.query(`DROP TABLE IF EXISTS user_key`);
16+
await connection.query(`DROP TABLE IF EXISTS user`);
1717

1818
await connection.query(`CREATE TABLE user (
1919
id VARCHAR(15) NOT NULL PRIMARY KEY,

0 commit comments

Comments
 (0)