You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 27, 2018. It is now read-only.
That would be great to update this repo with the last version of Chai. For example, the assert.approximately method is not present yet is very useful.
Would it require a lot of work ?
So far the alternative is to use directly the chai npm package : meteor npm install --save-dev chai
Chai uses the buffer package (I don't know why), so we have to install it too : meteor npm install --save-dev buffer
Then in the code we replace import { assert } from practicalmeteor:chai with import { assert } from chai.
The text was updated successfully, but these errors were encountered:
Actually nothing, it simply make this package deprecated. Meteor seems to slowly go toward npm packages instead of Atmosphere packages whenever possible anyway.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
That would be great to update this repo with the last version of Chai. For example, the
assert.approximately
method is not present yet is very useful.Would it require a lot of work ?
So far the alternative is to use directly the chai npm package :
meteor npm install --save-dev chai
Chai uses the buffer package (I don't know why), so we have to install it too :
meteor npm install --save-dev buffer
Then in the code we replace
import { assert } from practicalmeteor:chai
withimport { assert } from chai
.The text was updated successfully, but these errors were encountered: