From 8d3fa5f97ea2d3467bd06591d4be922bfa44a644 Mon Sep 17 00:00:00 2001 From: Ian Walter Date: Tue, 15 Dec 2020 00:27:50 -0500 Subject: [PATCH] Fix typos --- README.md | 4 ++-- packages/bff-webdriver/cli.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 07b2dcaa..afe209ac 100644 --- a/README.md +++ b/README.md @@ -108,8 +108,8 @@ with their **default** values: Declare a test by calling the test function with a name and a function: ```js -const { test } from '@ianwalter/bff') -const someFunctionality from './someFunctionality') +import { test } from '@ianwalter/bff' +import someFunctionality from './someFunctionality' test('some functionality', ({ expect }) => { expect(someFunctionality()).toBeTruthy() diff --git a/packages/bff-webdriver/cli.js b/packages/bff-webdriver/cli.js index 3b0fe036..a966fe59 100755 --- a/packages/bff-webdriver/cli.js +++ b/packages/bff-webdriver/cli.js @@ -2,7 +2,7 @@ import cli from '@ianwalter/cli' import { createLogger } from '@generates/logger' -import selenium from 'selenium-standalone.js' +import selenium from 'selenium-standalone' import cleanup from './cleanup.js' import { webdriverVersion } from './index.js'