Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2.1

jobs:
run-tests:
docker:
- image: cimg/node:18.20
steps:
- checkout

- run:
name: Install dependencies
command: npm install

- run:
name: Run single test with env
command: |
export LT_USERNAME=$LT_USERNAME
export LT_ACCESS_KEY=$LT_ACCESS_KEY
npm run single

workflows:
version: 2
run-all:
jobs:
- run-tests
3 changes: 2 additions & 1 deletion conf/single.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ exports.config = {
connectionRetryCount: 3,
path: "/wd/hub",
hostname: "hub.lambdatest.com",
port: 80,
port: 443,
protocol: "https",

framework: "mocha",
mochaOpts: {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"bugs": {},
"homepage": "https://github.com/Lambdatest/webdriverio-Lambdatest#readme",
"dependencies": {
"@wdio/cli": "^5.20.1",
"@wdio/local-runner": "^5.20.1",
"@wdio/mocha-framework": "^5.18.7"
"@wdio/cli": "^7.25.1",
"@wdio/local-runner": "^7.25.1",
"@wdio/mocha-framework": "^7.25.1"
}
}