mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
import { assertAllModulesInDirectory } from "./lib.ts";
|
|
|
|
const dirs = [
|
|
"containers",
|
|
"home",
|
|
"modules",
|
|
"overlays",
|
|
"packages",
|
|
"specializations",
|
|
];
|
|
|
|
for (const dir of dirs) {
|
|
Deno.test(`imports all modules in ./${dir}`, async () => {
|
|
await assertAllModulesInDirectory(dir);
|
|
});
|
|
}
|