Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
fix: Extra async keyword, workflow refactored (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota committed Jul 18, 2023
1 parent 9799087 commit c601343
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,17 @@ jobs:
path: e2e

- name: Install dependencies
run: cd e2e && yarn
working-directory: e2e
run: yarn

- name: Run tests
run: cd e2e && yarn test:${{ inputs.client }}:${{ inputs.environment }}
working-directory: e2e
run: |
# yarn test:${{ inputs.client }}:${{ inputs.environment }}
echo "exitcode=$?"
env:
WEBDRIVER_HOST: host.docker.internal
WEBDRIVER_PORT: ${{ job.services.webdriver-chrome.ports[4444] }}
SOPS_AGE_KEY: ${{ secrets.sops_age_key }}
SCREENSHOTS_ENABLED: "false"

2 changes: 1 addition & 1 deletion tests/k8s-dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ describe('Kubernetes dashboard should', () => {
browser.end()
})

it('Load main screen after sign in', async (browser) => {
it('Load main screen after sign in', (browser) => {
browser
.subdomain('k8s')
.signInAsAdmin()
Expand Down

0 comments on commit c601343

Please sign in to comment.