Skip to content

Commit

Permalink
[Tests] convert tests to tape so they no longer require ES6 features.
Browse files Browse the repository at this point in the history
Partially reverts 6c70b31.
  • Loading branch information
ljharb committed Dec 23, 2015
1 parent 224c8af commit ce56459
Show file tree
Hide file tree
Showing 5 changed files with 374 additions and 533 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -25,13 +25,13 @@
"dependencies": {},
"devDependencies": {
"browserify": "^12.0.1",
"code": "^2.0.1",
"lab": "^8.0.0"
"tape": "^4.3.0",
"covert": "^1.1.0"
},
"scripts": {
"test": "lab -a code -t 100 -L",
"test-tap": "lab -a code -r tap -o tests.tap",
"test-cov-html": "lab -a code -r html -o coverage.html",
"test": "npm run coverage",
"tests-only": "node test",
"coverage": "covert test",
"dist": "browserify --standalone Qs lib/index.js > dist/qs.js"
},
"license": "BSD-3-Clause"
Expand Down
5 changes: 5 additions & 0 deletions test/index.js
@@ -0,0 +1,5 @@
require('./parse');

require('./stringify');

require('./utils');

0 comments on commit ce56459

Please sign in to comment.