goopler/tests/integration/integration.spec.ts
2023-07-18 22:22:52 -07:00

9 lines
No EOL
182 B
TypeScript

/// <reference types="@rbxts/testez/globals" />
export = (): void => {
describe("Integration Test", () => {
it("should be true", () => {
expect(true).to.equal(true)
})
})
}