mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-17 00:15:00 +00:00
5 lines
119 B
JavaScript
5 lines
119 B
JavaScript
const throwError = () => {
|
|
throw new Error("this will cause the test to fail");
|
|
};
|
|
|
|
module.exports = { throwError };
|