2.2.6 • Published 6 years ago

cf-test-store v2.2.6

Weekly downloads
34
License
BSD-3-Clause
Repository
-
Last release
6 years ago

cf-test-store

Cloudflare Store Test Util

Installation

$ npm install cf-test-store

Usage

import assert from 'assert';
import {createMockStore} from 'cf-test-store';

describe('exampleActions', () => {
  it('should do something', () => {
    const store = createMockStore();
    store.dispatch(exampleActions.doSomething());
    assert.deepEqual(store.getActions(), [{
      type: 'ACTION_ONE'
    }, {
      type: 'ACTION_TWO'
    }]);
  });
});
2.2.6

6 years ago

2.2.5

6 years ago

2.2.4

7 years ago

2.2.3

7 years ago

2.2.2

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.0

8 years ago