We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72fbfb0 commit bf16a48Copy full SHA for bf16a48
test/assertions/index.js
@@ -0,0 +1,20 @@
1
+import expect from 'expect';
2
+import assertions from '../../src/assertions';
3
+
4
+describe('assertions', () => {
5
+ it('should export toDispatchActions', () => {
6
+ expect(assertions.toDispatchActions).toBeA('function');
7
+ });
8
9
+ it('should export toDispatchActionsWithState', () => {
10
+ expect(assertions.toDispatchActionsWithState).toBeA('function');
11
12
13
+ it('should export toNotDispatchActions', () => {
14
+ expect(assertions.toNotDispatchActions).toBeA('function');
15
16
17
+ it('should export toNotDispatchActionsWithState', () => {
18
+ expect(assertions.toNotDispatchActionsWithState).toBeA('function');
19
20
+});
0 commit comments