12 lines
382 B
TypeScript
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();
|