Skip to content
Snippets Groups Projects
Unverified Commit 8c6bcd5d authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #862 from HumanBrainProject/debug_gha

fix github actions
parents 0323a2a6 c4239963
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,9 @@ jobs:
PPTR_VERSION: "5.3.1"
CHROMIUM_VERSION: "86.0.4240.0"
outputs:
failure-state: ${{ steps.failure-state-step.FAILURE_STATE }}
steps:
- uses: actions/checkout@v2
with:
......@@ -99,7 +102,7 @@ jobs:
steps:
- name: update badge
run: |
[[ '${{ needs.e2e.steps.failure-state-step.outputs.FAILURE_STATE }}' = 'true' ]] && state=failure || state=success &&
[[ '${{ needs.e2e.outputs.failure-state }}' = 'true' ]] && state=failure || state=success &&
curl -v \
-X POST \
-H "Authorization: Token ${{ secrets.WORKFLOW_TOKEN }}" \
......
......@@ -57,7 +57,7 @@ describe('templates > ', () => {
})
})
describe('> switching template > ', () => {
describe('> switching template', () => {
beforeEach(async () => {
await iavPage.goto()
......@@ -77,7 +77,8 @@ describe('templates > ', () => {
await iavPage.setAtlasSpecifications(atlasName, [ tNameColin ])
await iavPage.wait(500)
await iavPage.waitUntilAllChunksLoaded()
await iavPage.wait(500)
const isActive = await iavPage.atlasTileIsActive(tNameColin)
expect(isActive.toString()).toEqual('true')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment