Skip to content

Commit 8e8dd98

Browse files
author
Eduardo García Sanz
committed
SVG is just that, the SVG without the span wrapper [BRAKING CHANGE]
1 parent a250971 commit 8e8dd98

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js :
3-
- "0.11"
3+
- "0.12"
44
- "iojs"
55
deploy:
66
provider: npm

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"engines" : {
3939
"iojs": ">= 1.0.0",
40-
"node": ">= 0.11.0"
40+
"node": ">= 0.12.0"
4141
},
4242
"jest" : {
4343
"testDirectoryName" : "test",

test/main.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,9 @@ var React = require('react/addons'),
33
fs = require('fs'),
44
vm = require('vm'),
55
path = require('path'),
6-
svgrt = require('..');
6+
svgrt = require('..'),
7+
jsdom = require('jsdom');
78

8-
9-
// file: test/setup.js
10-
var jsdom = require('jsdom');
11-
12-
// A super simple DOM ready for React to render into
13-
// Store this DOM and the window in global scope ready for React to access
149
global.document = jsdom.jsdom('<!doctype html><html><body></body></html>');
1510
global.window = document.defaultView;
1611
global.navigator = window.navigator;

0 commit comments

Comments
 (0)