Skip to content

Commit 70d2bf2

Browse files
authored
test: fix browser test (#209)
broken by commit: 7dc82dc
1 parent a3e6817 commit 70d2bf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
<!-- Testing dependencies -->
99
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
1010
<script src="../node_modules/mocha/mocha.js"></script>
11-
<script src="../node_modules/chai/chai.js"></script>
1211
</head>
1312
<body>
1413
<h1>JSONPath Tests</h1>
1514
<div id="mocha"></div>
1615

1716
<script type="module">
18-
import {JSONPath} from '../src/jsonpath-browser.js';
17+
import * as chai from '../node_modules/chai/chai.js'
18+
import {JSONPath} from '../dist/index-browser-esm.js';
1919

2020
mocha.setup('bdd');
2121
window.assert = chai.assert;

0 commit comments

Comments
 (0)