Closed Hreherch closed 5 years ago
Hopefully this is appropriate, my first time doing an open source contribution. Please let me know if there are any other steps I need to take! :)
In test/react.test.js one of the tests was missing the FeatureFalse component of the test, this is now added in to test for that case.
test/react.test.js
In test/main.test.js
test/main.test.js
expects(var).to.equal('a string')
expect(var === 'a string').to.be(true)
expected true to be false
expect(error).to.throw
expect(error).to.not.throw
undefined
Hopefully this is appropriate, my first time doing an open source contribution. Please let me know if there are any other steps I need to take! :)
In
test/react.test.js
one of the tests was missing the FeatureFalse component of the test, this is now added in to test for that case.In
test/main.test.js
expects(var).to.equal('a string')
instead ofexpect(var === 'a string').to.be(true)
expected true to be false
expect(error).to.throw
orexpect(error).to.not.throw
.undefined
in the test.