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