@falsejs/falsejs 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.falsejs/test-log.txt +5201 -0
- package/README.md +3 -0
- package/dist/index.js +254 -1923
- package/dist/index.js.map +1 -1
- package/package.json +407 -404
- package/spec/ava.test.js +35 -0
- package/spec/jasmine.test.js +75 -0
- package/spec/jest.test.js +90 -0
- package/spec/manual.test.js +80 -0
- package/spec/mocha.test.js +73 -0
- package/spec/qunit.test.js +34 -0
- package/spec/run_all_tests.js +171 -0
- package/spec/tape.test.js +33 -0
- package/Sanity.md +0 -17
package/README.md
CHANGED
|
@@ -225,6 +225,9 @@ Warning: React does not recognize the `getMember` prop on a DOM element. If you
|
|
|
225
225
|
```
|
|
226
226
|
This is normal. Do not worry. FalseJS uses a package called `get-member` that adds a `getMember` method to every object. React elements are objects, so it gets confused. You may wonder why there's a React error even if you're not using React, but FalseJS uses React.
|
|
227
227
|
|
|
228
|
+
## Tests
|
|
229
|
+
FalseJS uses multiple libraries for testing. Run `npm test` to test FalseJS.
|
|
230
|
+
|
|
228
231
|
## Related Projects
|
|
229
232
|
|
|
230
233
|
- [true-value](https://github.com/tj-commits/true-value) (the sister project)
|