From c5eb9ea138a83e777dddd6910d7b8a0f9a9f4f26 Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 17 Oct 2023 11:22:28 -0700 Subject: [PATCH] update JSON test --- tests/tests-node/esmock.node.test.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tests-node/esmock.node.test.js b/tests/tests-node/esmock.node.test.js index a4da171..626f127 100644 --- a/tests/tests-node/esmock.node.test.js +++ b/tests/tests-node/esmock.node.test.js @@ -541,26 +541,26 @@ test('should mock imported json', async () => { const importsJSON = await esmock( '../local/importsJSONfile.js', { '../local/example.json': { - 'test-example': 'test-json' + 'test-example': 'test-json-a' } }) assert.strictEqual( Object.keys(importsJSON.JSONobj).sort().join(), 'example,test-example') - assert.strictEqual(importsJSON.JSONobj['test-example'], 'test-json') + assert.strictEqual(importsJSON.JSONobj['test-example'], 'test-json-a') assert.strictEqual(importsJSON.JSONobj['example'], 'json') }) -/* + test('should mock imported json (strict)', async () => { const importsJSON = await esmock.strict( '../local/importsJSONfile.js', { '../local/example.json': { - 'test-example': 'test-json' + 'test-example': 'test-json-b' } }) assert.strictEqual( Object.keys(importsJSON.JSONobj).sort().join(), 'test-example') - assert.strictEqual(importsJSON.JSONobj['test-example'], 'test-json') + assert.strictEqual(importsJSON.JSONobj['test-example'], 'test-json-b') }) -*/ +