diff options
author | 2022-02-08 01:05:13 -0800 | |
---|---|---|
committer | 2022-02-08 01:05:13 -0800 | |
commit | 347b34886550ce60d2723db58b7d04b0445661db (patch) | |
tree | 8c27d6c4d545d43851d302ae53e028001ed7adb7 /integration/snippets/export-default-module-hot.js | |
parent | d4afa5477ddb3546fb9f6e88821cf1bc57316294 (diff) | |
download | bun-347b34886550ce60d2723db58b7d04b0445661db.tar.gz bun-347b34886550ce60d2723db58b7d04b0445661db.tar.zst bun-347b34886550ce60d2723db58b7d04b0445661db.zip |
:camera:
Diffstat (limited to 'integration/snippets/export-default-module-hot.js')
-rw-r--r-- | integration/snippets/export-default-module-hot.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/integration/snippets/export-default-module-hot.js b/integration/snippets/export-default-module-hot.js index 559c5c19e..d6bb5a6a1 100644 --- a/integration/snippets/export-default-module-hot.js +++ b/integration/snippets/export-default-module-hot.js @@ -1,2 +1,6 @@ // This test passes if there's no syntax error export default module.id; + +export function test() { + testDone(import.meta.url); +} |