mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 14:57:28 +00:00
fix(openontology): resolve manifest directories on Windows (#116)
This commit is contained in:
parent
6f23dbdb0f
commit
e5283455af
2 changed files with 9 additions and 2 deletions
|
|
@ -48,6 +48,13 @@ describe("init + validate", () => {
|
|||
expect(pkg.files.map((f) => f.path)).toContain("data/claims.ndjson");
|
||||
});
|
||||
|
||||
it("loads a package from an explicit manifest path", () => {
|
||||
const { dir } = scaffold();
|
||||
const pkg = loadOntologyPackage(join(dir, "openontology.yaml"));
|
||||
expect(pkg.dir).toBe(dir);
|
||||
expect(pkg.manifest.id).toBe("test-ecosystem");
|
||||
});
|
||||
|
||||
it("builds a deterministic digest that survives a rebuild", () => {
|
||||
const { pkg } = scaffold();
|
||||
const first = buildOntologyPackage(pkg);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue