fix suggestions on orm suite

This commit is contained in:
elianddb
2026-02-27 13:28:38 -08:00
parent 2d957ec7d6
commit 45451729f5
2 changed files with 6 additions and 6 deletions
@@ -7,4 +7,4 @@ dolt config --global --add user.name orm-test-runner
dolt config --global --add user.email orm-test-runner@liquidata.co
echo "Running orm-tests:"
bats /orm-tests/orm-tests.bats --show-output-of-passing-tests
bats /orm-tests/orm-tests.bats --print-output-on-failure
@@ -12,11 +12,11 @@ const database = process.env.DB_NAME ?? "dolt"
export const AppDataSource = new DataSource({
type: "mysql",
host,
port,
username,
password,
database,
host: host,
port: port,
username: username,
password: password,
database: database,
synchronize: true,
logging: false,
entities: [User],