Releases: theintern/intern
Releases · theintern/intern
4.10.1
This release fixes an issue where objects containing circular references would cause errors when Intern tried to serialize them. (#1188)
Thanks @rhpijnacker!
4.10.0
This release updates all of Intern's dependencies to bring in bug and security fixes.
4.9.1
This release updates dependencies to resolve security vulnerabilities.
4.9.0
This release adds a new socketTimeout
config parameter that can be used to set the timeout used for websocket connections between Intern and a remote host. (#1176)
4.8.8
This release fixes an issue where tsx files were not being instrumented for code coverage. (#1175)
4.8.7
Overview
This release allows the path to the loader to be set for the dojo, dojo2, and systemjs loader scripts (#1161). The options object for any of those loaders may now contain an internLoaderPath
property that points to the loader script. This property is consumed by Intern and will not be passed on to the loader itself.
{
"loader": {
"script": "dojo",
"options": {
"internLoaderPath": "./dojo/dojo.js"
}
}
}
4.8.6
Overview
This release fixes a bug that could cause a test run to fail when Intern tried to collect coverage data. (#1158)
4.8.5
Overview
This release updates the Dig Dug dependency to 2.5.0, which automatically updates its WebDriver version database when starting a test run. Basically, you won't need to update Intern every time a new chromedriver comes out.
4.8.4
Overview
This release fixes an issue when using mock timers in unit tests (#1125). It also updates the default webdriver versions for Chrome and Chromium Edge via a Dig Dug update.
4.8.3
Overview
This release fixes an issue where remote browsers would close the websocket channel if no messages had been sent or received for a long time (~60 seconds). (#1143)