29 lines
747 B
JavaScript
29 lines
747 B
JavaScript
export const table = "results";
|
|
export const seed = () => {
|
|
return [
|
|
{
|
|
name: "failing",
|
|
class: "failing.js",
|
|
method: "FAKEMETHOD",
|
|
env: "prod",
|
|
timestamp: new Date().toJSON(),
|
|
triage: false,
|
|
failed: true,
|
|
message: "Some Test FailureMessage",
|
|
screenshot: "https://picsum.photos/1920/1080",
|
|
console: "https://example.com",
|
|
},
|
|
{
|
|
name: "secondary1",
|
|
class: "secondary1.js",
|
|
method: "FAKEMETHOD",
|
|
env: "prod",
|
|
timestamp: new Date().toJSON(),
|
|
triage: false,
|
|
failed: true,
|
|
message: "Some Test FailureMessage from Secondary1",
|
|
screenshot: "https://picsum.photos/1920/1080",
|
|
console: "https://example.com",
|
|
},
|
|
];
|
|
};
|