* chore: renderer test coverage * fix: lint * chore: api tests * chore: tests for app reducer and StartGradeButton * chore: lint * fix: update reducer tests * chore: more test coverage * chore: test coverage * chore: update test for merge conflicts
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
import * as hooks from './hooks';
|
|
|
|
jest.unmock('./hooks');
|
|
|
|
describe('app-level hooks', () => {
|
|
describe('nullMethod', () => {
|
|
it('returns an empty object', () => {
|
|
expect(hooks.nullMethod()).toEqual({});
|
|
});
|
|
});
|
|
});
|