BREAKING CHANGE(tools): replace install functionality with a minimal placeholder CLI; remove installer, logging, path utilities, and related assets
This commit is contained in:
@@ -1,14 +1,9 @@
|
||||
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||||
|
||||
import * as tools from '../ts/tools.install.js';
|
||||
import * as tools from '../ts/index.js';
|
||||
|
||||
tap.test('should have install function exported', async () => {
|
||||
expect(typeof tools.install).toEqual('function');
|
||||
});
|
||||
|
||||
tap.test('should handle unknown package set', async () => {
|
||||
// This will just log a warning, not throw
|
||||
await tools.install('unknown');
|
||||
tap.test('should export runCli function', async () => {
|
||||
expect(typeof tools.runCli).toEqual('function');
|
||||
});
|
||||
|
||||
export default tap.start();
|
||||
|
||||
Reference in New Issue
Block a user