UNPKG
hp-redux
Version:
latest (0.1.1)
0.1.1
0.1.0
Hearthstone simulator
github.com/Bebersohl/hp-redux
Bebersohl/hp-redux
hp-redux
/
test
/
reducers
/
weapons.js
13 lines
(10 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-env mocha*/
const
{ expect } =
require
(
'chai'
);
const
weapons =
require
(
'../../src/reducers/weapons'
);
describe
(
'weapons reducer'
,
() =>
{
it
(
'should return the initial state'
,
() =>
{
expect
(
weapons
(
undefined
, {}) ).
to
.
eql
({}); }); });