From 4bb2a15b746b489613bdacab619f629a76852bc5 Mon Sep 17 00:00:00 2001 From: Georgi Angelov Date: Wed, 23 Oct 2024 12:56:25 +0300 Subject: [PATCH] chore: fix a test referencing the old default export --- test/integration/download-known-assets.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/download-known-assets.test.js b/test/integration/download-known-assets.test.js index 4061ab4..757cae2 100644 --- a/test/integration/download-known-assets.test.js +++ b/test/integration/download-known-assets.test.js @@ -1,6 +1,6 @@ const md5 = require('js-md5'); -const ScratchStorage = require('../../src/index').default; +const ScratchStorage = require('../../src/index').ScratchStorage; test('constructor', () => { const storage = new ScratchStorage();