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
/
deckCards.js
13 lines
(10 loc)
•
277 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
deckCards =
require
(
'../../src/reducers/deckCards'
);
describe
(
'deck cards reducer'
,
() =>
{
it
(
'should return the initial state'
,
() =>
{
expect
(
deckCards
(
undefined
, {}) ).
to
.
eql
({}); }); });