Open
Description
Maybe possible with QQmlCustomParser.
Testcase {
name: "some-script"
InlineScriptProbe {
id: script
interpreter: "/path/to/bash"
environment: {
SOME_TEXT: "Hello World"
}
script: {
echo ${SOME_TEXT}
}
}
run: {
script.start()
script.waitForFinished(1701)
Qst.compare(script.exitCode, 47)
}
}
InlineScriptTestcase {
interpreter: "/path/to/bash"
environment: {
SOME_TEXT: "Hello World"
}
script: {
echo ${SOME_TEXT}
}
}