qualiteer/tests/assets/suite/failing.js

5 lines
153 B
JavaScript
Raw Normal View History

2022-07-12 22:07:44 +00:00
export default function failingTest() {
2022-07-07 21:45:38 +00:00
console.log("This came from a failing test!");
2022-10-08 17:47:46 +00:00
return { status: 1, message: "This test always fails :(" };
2022-07-12 22:07:44 +00:00
}