Looks like running test locally on Windows is broken. Geoff suggested to change mail/test/resources/mozmill/mozmill/extension/bootstrap.js like so:
- modulesFile.initWithPath(env.get("TESTING_MODULES_DIR"));
+ modulesFile.initWithPath(env.get("TESTING_MODULES_DIR").replace(/\//g, "\\"));
That makes it work for the one test I tried ;-)
Bug 1585162 Comment 10 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Looks like running test locally on Windows is broken. Geoff suggested to change mail/test/resources/mozmill/mozmill/extension/bootstrap.js like so:
```
- modulesFile.initWithPath(env.get("TESTING_MODULES_DIR"));
+ modulesFile.initWithPath(env.get("TESTING_MODULES_DIR").replace(/\//g, "\\"));
```
That makes it work for the one test I tried ;-)