noogle/tests/data.test.js
Johannes Kirschbauer d9f579cf44
Feature/monorepo (#24)
* refactor to include all necessary dependencies directly here

* move indexer into monorepo

* add snapshot tests and seperate sub.project for builtin types

* add more missing builtins such as fromTOML
2023-02-25 13:14:40 +01:00

14 lines
412 B
JavaScript

import libData from "./data/lib.json";
import trivialBuilders from "./data/trivial-builders.json";
import builtins from "./data/builtins.json";
it("has not changed lib data", () => {
expect(libData).toMatchSnapshot();
});
it("has not changed trivial-builders data", () => {
expect(trivialBuilders).toMatchSnapshot();
});
it("has not changed builtins data", () => {
expect(builtins).toMatchSnapshot();
});