You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting tests with an incorrect or non-existent parameter name, the tests do not appear in the Test Run within Qase, despite being executed and assigned a test case ID.
Test case:
test(`Check copy button on result screen for Project`, async ({ browserName }) => {
qase.id(1527);
qase.parameters({ 'Document type': 'Project', Browser: browserName });
// Test implementation...
});
Result:
test(`Check copy button on result screen for Project`, async ({ browserName }) => {
qase.id(1527);
qase.parameters({ 'f type': 'Project', Browser: browserName });
// Test implementation...
});
Logs show that we successfully sent:
[DEBUG] qase: Results sent to Qase: 6
[INFO] qase: Run 45 completed
Result:
Actual Result:
The test does not appear in the Test Run, even though it is executed and assigned the correct test case ID.
Expected Result is at your discretion:
Show error in logs
Update test-case with id 1527
Show error near the case in Test Run
But it is definitely necessary to show the test in the test run!
The text was updated successfully, but these errors were encountered:
When submitting tests with an incorrect or non-existent parameter name, the tests do not appear in the Test Run within Qase, despite being executed and assigned a test case ID.
Test case:
Result:
Logs show that we successfully sent:
Result:
Actual Result:
The test does not appear in the Test Run, even though it is executed and assigned the correct test case ID.
Expected Result is at your discretion:
But it is definitely necessary to show the test in the test run!
The text was updated successfully, but these errors were encountered: