This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
# Remove last run test results | |
- id: remove-allure-results | |
name: gcr.io/cloud-builders/gsutil | |
entrypoint: "/bin/bash" | |
args: ["-c", "gsutil -m rm -r gs://$_GCS_BUCKET_PATH"] | |
allow_failure: true | |
# Getting the sub-module ui-tests | |
- id: git-submodule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Expression | Meaning | | |
|----------------------------------------------------------------------------------------|---------------------------------------------------------------------------| | |
| ["answer", "Q1"] | Gets and returns the answer for the question Q1 | | |
| ["equals?", "Q1A1", ["answer", "Q1"] | Check if the answer for the question Q1 os "Q1A1". Returns true or false. | | |
| ["and", ["equals?", "Q1A1", ["answer", "Q1"]] , ["equals?", "Q2A1", ["answer", "Q2"]]] | Check if the answer for the question Q1 os "Q1A1". Returns true or false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"qId": "Q3", | |
"canDisplay": ["and", ["equals?", "Q1A1", ["answer", "Q1"]] , ["equals?", "Q2A1", ["answer", "Q2"]]], | |
"options": { | |
"id": "Q3A1" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nisp from 'nisp' | |
var sandbox = { | |
'answer': (quid) => answers[quid], | |
'and': (e1, e2) => e1 && e2, | |
'equals?': (v1, v2) => v1 == v2 | |
}; | |
var exp = ["and", ["equals?", "Q1A1", ["answer", "Q1"]] , ["equals?", "Q2A1", ["answer", "Q2"] ]]; | |
nisp(exp, sandbox); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"questions": [ | |
{ | |
"qId": "Q1", | |
"options": [ | |
{ | |
"id": "Q1A1", | |
"displayOnSelect": "Q2" | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local 631 MB | |
application 704 MB (contains node modules) | |
lib 481 MB | |
share 241 MB | |
. | |
. | |
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPOSITORY | TAG | IMAGE ID | CREATED | SIZE | |
---|---|---|---|---|---|
app-static/ts | 1 | 248f0e845f53 | 3 week ago | 2.47GB | |
node | 11 | 4051f768340f | 3 week ago | 904MB |