OK

Size: a a a
OK
AD
OK
MS
VL
export const defaultCucumberHooks: CucumberHookFunctions = {
afterScenario(
uri: string,
feature: Feature,
scenario: Scenario,
result: CucumberHookResult,
sourceLocation: SourceLocation
): void {
if (scenario.tags.length > 0) {
addArgument("Tags", scenario.tags.map(tag => tag.name).join(" "));
}
OK
export const defaultCucumberHooks: CucumberHookFunctions = {
afterScenario(
uri: string,
feature: Feature,
scenario: Scenario,
result: CucumberHookResult,
sourceLocation: SourceLocation
): void {
if (scenario.tags.length > 0) {
addArgument("Tags", scenario.tags.map(tag => tag.name).join(" "));
}
DA
M
#!/bin/bash
sourcefile=$1
exec 0< ./$sourcefile
while read line
do
URL=${line}
RESPONSE_CODE=$(curl -I ${URL} | grep "^HTTP\/" | cut -d" " -f2)
if [ "${RESPONSE_CODE}" != "200" ]; then
mkdir -p fails
echo "${URL};${RESPONSE_CODE}" >> ./fails/${sourcefile}_fails.csv
fi
done
mv ./$sourcefile ./$sourcefile.done
M
M
AP
OK
OK
DA
DA
AP
OK
AP
OK