databuild/databuild/dashboard/index.test.ts
2025-07-10 21:39:43 -07:00

12 lines
382 B
TypeScript

const { appName } = require('./index');
const o = require('ospec');
o.spec("appName", () => {
o("should be databuild", () => {
o(appName).equals("databuild") `Should be databuild`;
});
})
// TODO - I think we can create an ospec target that invokes these with the ospec CLI?
// https://github.com/MithrilJS/ospec?tab=readme-ov-file#command-line-interface
o.run();