Skip to content

Commit 9b7515c

Browse files
committed
Tests passing with tape-run
Also added a Github dependency on azer/format-text
1 parent ce8712a commit 9b7515c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
"description": "Create a new DOM element from string",
55
"main": "index.js",
66
"scripts": {
7-
"test": "node test -b"
7+
"test": "browserify test.js | tape-run"
88
},
99
"devDependencies": {
10-
"prova": "*"
10+
"browserify": "13.0.0",
11+
"tape": "4.5.1",
12+
"tape-run": "2.1.3"
1113
},
1214
"keywords": [
1315
"dom"
@@ -20,6 +22,6 @@
2022
"license": "BSD",
2123
"dependencies": {
2224
"domify": "~1.0.0",
23-
"format-text": "0.0.3"
25+
"format-text": "azer/format-text"
2426
}
2527
}

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var test = require('prova');
1+
var test = require('tape');
22
var newElement = require("./");
33

44
test('creates an element', function (t) {

0 commit comments

Comments
 (0)