@agentage/cli 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.test.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.test.js +1 -1
- package/package.json +1 -1
package/dist/cli.test.js
CHANGED
|
@@ -18,7 +18,7 @@ describe('CLI Commands', () => {
|
|
|
18
18
|
const output = execSync(`tsx ${CLI_PATH} --version`, {
|
|
19
19
|
encoding: 'utf-8',
|
|
20
20
|
});
|
|
21
|
-
expect(output.trim()).toBe('0.1.
|
|
21
|
+
expect(output.trim()).toBe('0.1.2');
|
|
22
22
|
});
|
|
23
23
|
test('CLI shows help', () => {
|
|
24
24
|
const output = execSync(`tsx ${CLI_PATH} --help`, {
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.test.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { greet, version } from './index.js';
|
|
2
2
|
describe('CLI Package', () => {
|
|
3
3
|
test('version is defined', () => {
|
|
4
|
-
expect(version).toBe('0.1.
|
|
4
|
+
expect(version).toBe('0.1.2');
|
|
5
5
|
});
|
|
6
6
|
test('greet returns correct message', () => {
|
|
7
7
|
expect(greet()).toBe('Hello from AgentKit CLI!');
|