Skip to content

Commit

Permalink
containDeep
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 10, 2024
1 parent 8c648e1 commit 467d36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/api/backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('api: /backup', () => {
httpZipResponseToFiles(asAlice.post('/v1/backup').expect(200))
.then(({ filenames, files }) => {
const constantFiles = ['keepalive', 'keys.json', 'toc.dat'];
[ ...files.keys() ].should.eqlInAnyOrder(constantFiles);
[ ...files.keys() ].should.containDeep(constantFiles);

const datFiles = without(constantFiles, filenames);
// Because /backup ALWAYS uses config('default.database'), this list
Expand Down

0 comments on commit 467d36c

Please sign in to comment.