@ricepuddin/redux-segment
Version:
Segment.io analytics integration for redux.
14 lines (13 loc) • 395 B
text/typescript
describe('Simple Test', () => {
it('2*2 should equal 4', () => {
let x = 2 * 2;
let y = 4;
// Assert that x is defined.
chai.expect(x).to.not.be.undefined;
// Assert that x equals to specific value.
chai.expect(x).to.equal(4);
// Assert that x equals to y.
chai.expect(x).to.equal(y);
// See http://chaijs.com/api/bdd/ for more assertion options.
});
});