Skip to content

Commit fedf44e

Browse files
committed
moved tests to test dir.
1 parent 3d327c0 commit fedf44e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Diff for: .gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
build
22
node_modules
3-
.idea
3+
.idea
4+
*.iml
5+
*.iws
6+
*.ipr

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Provides the ability to safely navigate an object tree, regardless if the object, its properties, or nested properties exist.
33

44
## Examples
5+
To easily try out nevernull, you can fork the codio project & box [here](https://codio.com/jasonmcaffee/nn/tree/README.md)
56

67
### No Uncaught ReferenceError or Uncaught TypeError Errors
78
The function-object returned from nn guarantees safe navigation of its object tree.

Diff for: jasmine.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"spec_dir": ".",
33
"spec_files": [
4-
"build/**/*.spec.js"
4+
"test/**/*.spec.js"
55
],
66
"stopSpecOnExpectationFailure": false,
77
"random": false

Diff for: src/nevernull.spec.js renamed to test/nevernull.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const nn = require('./nevernull');
1+
const nn = require('./../build/nevernull');
22

33
describe("nevernull", ()=>{
44

0 commit comments

Comments
 (0)