Merge pull request #22 from EdwardBetts/spelling

Correct spelling mistakes
This commit is contained in:
Matt Hensman
2019-01-23 13:21:48 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ Watching ext changes:
npm run watch --prefix ./ext
````
Launch Firefox and auto-reload on rebuild (run in seperate terminal):
Launch Firefox and auto-reload on rebuild (run in separate terminal):
````sh
npm run start --prefix ./ext

View File

@@ -161,8 +161,8 @@ async function injectSpecs (driver) {
.setChromeOptions(chromeOptions)
.build();
const capabilties = await driver.getCapabilities();
const browserName = capabilties.get("browserName");
const capabilities = await driver.getCapabilities();
const browserName = capabilities.get("browserName");
// Need to wait for cast extension on Chrome
if (browserName === "chrome") {