Skip to content

Commit b9465d4

Browse files
committed
Fix tests for 0.12
1 parent 8882c6e commit b9465d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test-src/JsonStreamStringify.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import { Readable } from 'stream';
33
import expect from 'expect.js';
4-
import JsonStreamStringify from '..';
4+
import JsonStreamStringify from '.';
55

66
function createTest(input, expected, ...args) {
77
return () => new Promise((resolve, reject) => {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/* eslint-disable import/no-dynamic-require */
22

33
const prop = process.version.split('.')[0].slice(1) >= 8 ? '' : '.polyfill';
4-
module.exports = require(`./dist/umd${prop}.js`);
4+
module.exports = require(`../dist/umd${prop}.js`);

0 commit comments

Comments
 (0)