CodeceptJS v1.4.5 Release Notes

    • Add require param to main config. Allows to require Node modules before executing tests. By @LukoyanovE. For example:
      • Use ts-node/register to register TypeScript parser
      • Use should to register should-style assertions
    "require": ["ts-node/register", "should"]
    
    • [WebDriverIO] Fix timeouts definition to be compatible with W3C drivers. By @LukoyanovE
    • ๐Ÿ›  Fixed: exception in Before block w/ Mocha causes test not to report failure. See #1292 by @PeterNgTr
    • Command run-parallel now accepts --override flag. Thanks to @ClemCB
    • ๐Ÿ›  Fixed Allure report with Before/BeforeSuite/After/AfterSuite steps. By @PeterNgTr
    • โž• Added RUN_MULTIPLE env variable to Docker config. Allows to run tests in parallel inside a container. Thanks to @PeterNgTr
    • ๐Ÿ›  [Mochawesome] Fixed showing screenshot on failure. Fix by @PeterNgTr
    • ๐Ÿ›  Fixed running tests filtering by tag names defined via Scenario.tag()