1
0
Fork 0
mirror of synced 2024-08-15 01:51:33 +12:00

Improve row tests

This commit is contained in:
adrinr 2023-02-03 17:55:40 +00:00
parent 4cab97b8ab
commit bc09cb76f1

View file

@ -25,8 +25,11 @@ describe("/rows", () => {
afterAll(setup.afterAll)
beforeEach(async () => {
beforeAll(async () => {
await config.init()
})
beforeEach(async()=>{
table = await config.createTable()
row = basicRow(table._id)
})