Improve row tests

This commit is contained in:
adrinr 2023-02-03 17:55:40 +00:00
parent 4cab97b8ab
commit bc09cb76f1
1 changed files with 4 additions and 1 deletions

View File

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