Skip to content

Commit fb2526c

Browse files
committed
test(config): fix failing unit test
1 parent 9ac2a8f commit fb2526c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/migrator.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('Migrator tests', () => {
3030
expect(getGenerator).toBeCalled();
3131
expect(getGenerator).toBeCalledWith('migration');
3232
expect(runActions).toBeCalledTimes(1);
33-
expect(runActions).toBeCalledWith({timestamp: '20200511000000', name: 'test'});
33+
expect(runActions).toBeCalledWith({migrationsPath: 'migrations', timestamp: '20200511000000', name: 'test'});
3434
});
3535

3636
afterAll((done) => {

0 commit comments

Comments
 (0)