testcases
1 row where testsuite_id = 232976
This data as json, CSV (advanced)
| id ▼ | testsuite_id | classname | name | time | failure | skipped |
|---|---|---|---|---|---|---|
| 12513345 | Trying to open a non existing filter 232976 | chrome.90_0_4430_212.linux.Filter_editing.Trying_to_open_a_non-existing_filter | I should receive an error | 1.371 | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE testcases (
id INTEGER PRIMARY KEY,
testsuite_id INTEGER NOT NULL,
classname TEXT,
name TEXT,
time REAL,
failure INTEGER NOT NULL,
skipped INTEGER NOT NULL,
CHECK (failure IN (0, 1)),
CHECK (skipped IN (0, 1)),
FOREIGN KEY(testsuite_id) REFERENCES testsuites(id)
);