describe('flashError', () => {
    it('creates an add action with error level', () => {
      expect(flashError(MSG)).toEqual(addFlashAction('error', MSG));
    });
  });