Wire up tests & sonarcloud
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright 2025 New Vector Ltd.
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
||||
Please see LICENSE files in the repository root for full details.
|
||||
*/
|
||||
|
||||
import { expect, test } from "vitest";
|
||||
|
||||
import { Api, isModule } from "./api.js";
|
||||
|
||||
const TestModule = {
|
||||
default: class TestModule {
|
||||
public static moduleApiVersion = "1.0.0";
|
||||
public constructor(private readonly api: Api) {}
|
||||
public async load(): Promise<void> {
|
||||
console.log("TestModule loaded");
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
test("isModule correctly identifies valid modules", () => {
|
||||
expect(isModule(TestModule)).toBe(true);
|
||||
});
|
||||
Reference in New Issue
Block a user