12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
|
export const table = "alerting";
|
||
|
export const seed = () => {
|
||
|
return [
|
||
|
{
|
||
|
name: `failing`,
|
||
|
class: `failing.js`,
|
||
|
method: "FAKEMETHOD",
|
||
|
expires: new Date().toJSON(),
|
||
|
},
|
||
|
];
|
||
|
};
|