@@ -46,7 +46,7 @@ const { Builder } = require('../index')
4646 * Describes a browser targeted by a {@linkplain suite test suite}.
4747 * @record
4848 */
49- function TargetBrowser ( ) { }
49+ function TargetBrowser ( ) { }
5050
5151/**
5252 * The {@linkplain Browser name} of the targeted browser.
@@ -208,16 +208,16 @@ function init(force = false) {
208208 if ( seleniumJar && seleniumUrl ) {
209209 throw Error (
210210 'Ambiguous test configuration: both SELENIUM_REMOTE_URL' +
211- ' && SELENIUM_SERVER_JAR environment variables are set'
211+ ' && SELENIUM_SERVER_JAR environment variables are set'
212212 )
213213 }
214214
215215 const envBrowsers = getBrowsersToTestFromEnv ( )
216216 if ( ( seleniumJar || seleniumUrl ) && envBrowsers . length === 0 ) {
217217 throw Error (
218218 'Ambiguous test configuration: when either the SELENIUM_REMOTE_URL or' +
219- ' SELENIUM_SERVER_JAR environment variable is set, the' +
220- ' SELENIUM_BROWSER variable must also be set.'
219+ ' SELENIUM_SERVER_JAR environment variable is set, the' +
220+ ' SELENIUM_BROWSER variable must also be set.'
221221 )
222222 }
223223
@@ -295,7 +295,7 @@ class Environment {
295295 builder . getCapabilities ( ) . merge ( browser . capabilities ) ;
296296 }
297297
298- if ( browser . name === 'firefox' ) {
298+ if ( browser . name === 'firefox' ) {
299299 builder . setCapability ( 'moz:debuggerAddress' , true ) ;
300300 }
301301
@@ -315,7 +315,7 @@ class Environment {
315315 * Configuration options for a {@linkplain ./index.suite test suite}.
316316 * @record
317317 */
318- function SuiteOptions ( ) { }
318+ function SuiteOptions ( ) { }
319319
320320/**
321321 * The browsers to run the test suite against.
@@ -490,8 +490,8 @@ function getTestHook(name) {
490490 if ( type !== 'function' ) {
491491 throw TypeError (
492492 `Expected global.${ name } to be a function, but is ${ type } .` +
493- ' This can happen if you try using this module when running with' +
494- ' node directly instead of using jasmine or mocha'
493+ ' This can happen if you try using this module when running with' +
494+ ' node directly instead of using jasmine or mocha'
495495 )
496496 }
497497 return fn
0 commit comments