From 2a3518167cf9095c60d39197d26e780c018dd144 Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 26 Jul 2019 16:35:50 +0200 Subject: [PATCH] default path should contain the root folder - for not breaking the `./` way of importing --- src/app/tabs/test-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/test-tab.js b/src/app/tabs/test-tab.js index 8372c54146..56c2b0e711 100644 --- a/src/app/tabs/test-tab.js +++ b/src/app/tabs/test-tab.js @@ -147,7 +147,7 @@ module.exports = class TestTab extends ViewPlugin { /* Test are not associated with the UI */ - testFromSource (content, path = 'unit-test.sol') { + testFromSource (content, path = 'browser/unit-test.sol') { return new Promise((resolve, reject) => { let runningTest = {} runningTest[path] = { content }