Skip to content

Commit 8418baa

Browse files
committedSep 28, 2019
version 1
1 parent c50bbce commit 8418baa

File tree

9 files changed

+1734
-16
lines changed

9 files changed

+1734
-16
lines changed
 

‎.eslintrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
"parserOptions": {
1212
"ecmaVersion": 2018,
1313
"sourceType": "module",
14-
"tsconfigRootDir": ".",
15-
"project": "./tsconfig.json"
14+
"tsconfigRootDir": "."
1615
},
1716
"rules": {
1817
"@typescript-eslint/no-unused-vars": 2,

‎.github/workflows/nodejs.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ jobs:
1212
uses: actions/setup-node@v1
1313
with:
1414
node-version: ${{ matrix.node-version }}
15-
- name: npm install, build, and test (soon)
15+
- name: npm install, build, and test
16+
env:
17+
BROWSERSTACK_USER_NAME: ${secrets.BROWSERSTACK_USER_NAME}
18+
BROWSERSTACK_ACCESS_KEY: ${secrets.BROWSERSTACK_ACCESS_KEY}
1619
run: |
1720
npm install
1821
npm run lint
1922
npm run build
20-
env:
21-
CI: true
23+
npm run test

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ import { until, By } from 'selenium-webdriver';
9191

9292
describe('my visual test', () => {
9393
it('test something', () => {
94-
global.__driver__.get('https://mysuperurl.ltd')
94+
global.__driver__.get('https://mysuperurl.ltd');
9595
// do something
9696
// do test
9797
});

0 commit comments

Comments
 (0)
Please sign in to comment.