home / tests

testcases

6 rows where testsuite_id = 9012

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ testsuite_id classname name time failure skipped
1479118 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks are highlighted in the reference list when there are multiple used references 1.386 0 0
1479119 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks clickable up arrow is hidden by default when there are multiple backlinks 0.589 0 0
1479120 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks clickable up arrow shows when jumping to multiple used references 0.659 0 0
1479121 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks use the last clicked target for the clickable up arrow on multiple used references 0.705 0 0
1479122 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks clickable up arrow is hidden when jumping back from multiple used references 0.605 0 0
1479123 Cite backlinks 9012 chrome.90_0_4430_212.linux.Cite backlinks are not accidentally removed from unnamed references 0.638 0 0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
        );
Powered by Datasette · Queries took 7212.18ms