2.2.6 • Published 7 years ago

cf-test-store v2.2.6

Weekly downloads
34
License
BSD-3-Clause
Repository
-
Last release
7 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

7 years ago

2.2.5

7 years ago

2.2.4

8 years ago

2.2.3

8 years ago

2.2.2

8 years ago

2.2.1

8 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.1

8 years ago

2.0.0

9 years ago

1.0.0

9 years ago