mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-21 02:57:46 -05:00
fix suggestions on orm suite
This commit is contained in:
@@ -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],
|
||||
|
||||
Reference in New Issue
Block a user