summaryrefslogtreecommitdiff
path: root/spec/frontend/boards/stores/state_spec.js
blob: 35490a63567cbdc4e46f5794441fe631d39e7189 (plain)
1
2
3
4
5
6
7
8
9
10
11
import createState from '~/boards/stores/state';

describe('createState', () => {
  it('is a function', () => {
    expect(createState).toEqual(expect.any(Function));
  });

  it('returns an object', () => {
    expect(createState()).toEqual(expect.any(Object));
  });
});