Remove focus test.

This commit is contained in:
Sam Rose 2024-10-31 14:46:57 +00:00
parent 76a68a12f0
commit 7026a35e04
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -230,7 +230,7 @@ describe("postgres integrations", () => {
})
})
describe.only("money field 💰", () => {
describe("money field 💰", () => {
const tableName = "moneytable"
let table: Table
@ -277,6 +277,9 @@ describe("postgres integrations", () => {
row = await config.api.row.save(table._id!, { ...row, price: "400.00" })
expect(row.price).toBe("400.00")
row = await config.api.row.save(table._id!, { ...row, price: "400.123" })
expect(row.price).toBe("400.123")
})
})
})