Revamp Job flow
This commit is contained in:
parent
945afdfbbe
commit
4a0a4b29a5
86 changed files with 592 additions and 608 deletions
29
lib/server/database/seeds/results-seed.js
Normal file
29
lib/server/database/seeds/results-seed.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
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",
|
||||
},
|
||||
];
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue