Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit aba0313

Browse files
authored
Merge pull request #955 from NativeScript/fatme/fix-css-file-windows
fix: fix app.css file path on windows machines
2 parents b77ecff + 7d734d8 commit aba0313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: unit-testing-config-loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function ({ appFullPath, projectRoot, angular, rootPagesRegExp
66
const testFilesRegExp = /tests\/.*\.(ts|js)/;
77
const runnerFullPath = join(projectRoot, "node_modules", "nativescript-unit-test-runner");
88
const runnerRelativePath = convertSlashesInPath(relative(appFullPath, runnerFullPath));
9-
const appCssFilePath = join(runnerRelativePath, "app.css");
9+
const appCssFilePath = convertSlashesInPath(join(runnerRelativePath, "app.css"));
1010
let source = `
1111
require("tns-core-modules/bundle-entry-points");
1212
const runnerContext = require.context("${runnerRelativePath}", true, ${rootPagesRegExp});

0 commit comments

Comments
 (0)