diff --git a/test.js b/test.js index 50367c5..f7711ad 100644 --- a/test.js +++ b/test.js @@ -1,4 +1,6 @@ -import {resolve_if} from './pkg/conditions.js' +import conditions from './pkg/conditions.js' + +const {resolve_if} = conditions var tests = { 'true': { @@ -74,4 +76,4 @@ for (const testsKey in tests) { } else if (test.result !== result) { throw 'Test failed' } -} \ No newline at end of file +}