Fix action configuration test

This commit is contained in:
Keraito 2018-04-20 17:19:40 +02:00
parent 7c02698fc4
commit 3547919037

View File

@ -4,13 +4,16 @@ import { configureActions } from '../../';
describe('Configure Actions', () => {
it('can configure actions', () => {
const depth = 100;
const clearActionLogger = true;
configureActions({
depth,
clearActionLogger,
});
expect(config).toEqual({
depth,
clearActionLogger,
});
});
});