Skip to content

Commit 19c357a

Browse files
committed
Convert fixtures to string for better json standards
1 parent 3c98de5 commit 19c357a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = function(rawSON) {
4747
if(list[index].fixture) {
4848
var dataArgs = list[index].fixture.type.split('.');
4949
dataArgs.push(list[index].fixture.params);
50-
tmp[index] = createData(dataArgs);
50+
tmp[index] = createData(dataArgs).toString();
5151
} else {
5252
console.log("ERROR, there is a problem with the definition of your fixture");
5353
}

0 commit comments

Comments
 (0)