Update create-database.js

This commit is contained in:
Aleksandr Statciuk 2022-02-05 07:45:12 +03:00
parent 219539b70c
commit 244afb8088
4 changed files with 7 additions and 2 deletions

View file

@ -27,7 +27,8 @@ it('can create database', () => {
expect(output).toEqual(
expect.arrayContaining([
expect.objectContaining(expected[0]),
expect.objectContaining(expected[1])
expect.objectContaining(expected[1]),
expect.objectContaining(expected[2])
])
)
})