Skip to content

Commit

Permalink
[Tests] relocate native tests.
Browse files Browse the repository at this point in the history
ljharb committed Dec 10, 2015

Verified

This commit was signed with the committer’s verified signature.
rm3l Armel Soro
1 parent 3edf8de commit 504a8cb
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -7,12 +7,13 @@
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run tests-only && npm run security",
"tests-only": "node test.js",
"coverage": "covert test.js",
"coverage-quiet": "covert test.js --quiet",
"tests-only": "npm run test:native",
"test:native": "node test/native.js",
"coverage": "covert test/native.js",
"coverage-quiet": "covert test/native.js --quiet",
"lint": "npm run jscs && npm run eslint",
"jscs": "jscs *.js",
"eslint": "eslint *.js",
"jscs": "jscs *.js test/*.js",
"eslint": "eslint *.js test/*.js",
"security": "nsp check"
},
"repository": {
@@ -58,7 +59,7 @@
"es6-shim": "^0.33.13"
},
"testling": {
"files": "test.js",
"files": "test/native.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
2 changes: 1 addition & 1 deletion test.js → test/native.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
require('es6-shim');

var test = require('tape');
var isEqual = require('./');
var isEqual = require('../');
var isSymbol = require('is-symbol');
var genFn = require('make-generator-function');
var hasGeneratorSupport = typeof genFn === 'function';

0 comments on commit 504a8cb

Please sign in to comment.