diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-13 23:38:57 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-13 23:38:57 +0100 |
commit | be5917c97b8163016ce797e0b725b05a38f4c847 (patch) | |
tree | 940d38d272841ec09a1bd437949fcca5b8d0da7d /testlib | |
parent | 8a9d6cb0e658d846e1c2b69854e6aab8f9fad39f (diff) |
fix text harness problem caused by restructuring (again)
Diffstat (limited to 'testlib')
-rw-r--r-- | testlib/selenium/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testlib/selenium/runtime.js b/testlib/selenium/runtime.js index 06dd56330..7fa9ee958 100644 --- a/testlib/selenium/runtime.js +++ b/testlib/selenium/runtime.js @@ -139,7 +139,7 @@ driver.executeScript(script); driver.wait(untilTestOver); function augmentCoverage(cov) { - for (let file of globSync(projectRoot + "/lib/**/*.js")) { + for (let file of globSync(projectRoot + "/src/**/*.js")) { if (file in cov) { continue; } |