mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
import { matchManifest } from "./matchManifest"
|
|
import giteaManifest from "./__fixtures__/giteaManifest"
|
|
import synapseManifest from "./__fixtures__/synapseManifest"
|
|
|
|
describe("matchManifest", () => {
|
|
test("gittea", () => {
|
|
matchManifest.unsafeCast(giteaManifest)
|
|
})
|
|
test("synapse", () => {
|
|
matchManifest.unsafeCast(synapseManifest)
|
|
})
|
|
})
|