Skip to content

Commit e071111

Browse files
committed
test(): fix tests
1 parent fc173db commit e071111

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ describe('rollup-plugin-node-polyfills', () => {
2525
rollup.rollup({
2626
input: 'test/examples/' + file,
2727
plugins: [
28-
nodePolyfills()
28+
nodePolyfills({
29+
include: null
30+
})
2931
]
3032
})
3133
.then(bundle => bundle.generate({format: 'cjs'}))
@@ -52,6 +54,7 @@ describe('rollup-plugin-node-polyfills', () => {
5254
entry: 'test/examples/crypto.js',
5355
plugins: [
5456
nodePolyfills({
57+
include: null,
5558
crypto: true
5659
})
5760
]

0 commit comments

Comments
 (0)