diff options
| -rw-r--r-- | gui/standalone-tests.ts | 2 | ||||
| -rw-r--r-- | gui/test.pkg.json | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gui/standalone-tests.ts b/gui/standalone-tests.ts index 3da013ac86..23ba845b98 100644 --- a/gui/standalone-tests.ts +++ b/gui/standalone-tests.ts @@ -10,6 +10,7 @@ import path from 'path'; const tmpDir = path.join(os.tmpdir(), 'mullvad-standalone-tests'); const rootDir = path.join(__dirname, '..'); const nodeModulesDir = path.join(rootDir, 'node_modules'); +const srcDir = path.join(rootDir, 'build', 'src'); const testDir = path.join(rootDir, 'build', 'test'); const nodeBin = process.argv[0]; @@ -32,6 +33,7 @@ function extract() { removeTmpDir(); fs.mkdirSync(tmpDir); + extractDirectory(srcDir); extractDirectory(testDir); extractDirectory(nodeModulesDir); } diff --git a/gui/test.pkg.json b/gui/test.pkg.json index bc9d43ba18..e61c0e5103 100644 --- a/gui/test.pkg.json +++ b/gui/test.pkg.json @@ -5,6 +5,7 @@ "win-x64" ], "assets": [ + "build/src/config.json", "build/test/e2e/utils.js", "build/test/e2e/installed/**/*.js", "node_modules/.bin/playwright", |
