4 lines
153 B
JavaScript
4 lines
153 B
JavaScript
export default function failingTest() {
|
|
console.log("This came from a failing test!");
|
|
return { status: 1, message: "This test always fails :(" };
|
|
}
|