Added a test-stub for the typescript module

This commit is contained in:
Kir_Antipov 2024-01-05 17:52:42 +00:00
parent 7fec30e288
commit 5c75c036c0

View file

@ -0,0 +1,12 @@
describe("typescript", () => {
test("assume that everything is fine, until it's not", () => {
// The `typescript` module is only used for code generation during
// TypeScript-to-JavaScript transpilation. Thus, there's no need
// to expend effort testing code that would cause a compilation
// error if something was actually wrong.
//
// Also, this module is far from perfect by design.
// It was created to perform a few very specific tasks, not to serve
// as a drop-in implementation of a TypeScript syntax tree builder.
});
});