Skip to content

Commit

Permalink
test update
Browse files Browse the repository at this point in the history
  • Loading branch information
Octo8080X committed Jan 2, 2024
1 parent 6f4a65b commit b061c2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/utils/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const connection = await mysql.createConnection({
database: "test",
});

//await connection.query(`DROP TABLE user_session`);
//await connection.query(`DROP TABLE user_key`);
//await connection.query(`DROP TABLE user`);
await connection.query(`DROP TABLE IF EXISTS user_session`);
await connection.query(`DROP TABLE IF EXISTS user_key`);
await connection.query(`DROP TABLE IF EXISTS user`);

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

0 comments on commit b061c2e

Please sign in to comment.