@tracehound/cli 1.2.0 → 1.4.0
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/package.json +2 -2
- package/tests/commands.test.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tracehound/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Tracehound CLI evaluation runtime",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Erdem Arslan <me@erdem.work>",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"cli-table3": "^0.6.5",
|
|
30
30
|
"commander": "^12.0.0",
|
|
31
|
-
"@tracehound/core": "1.
|
|
31
|
+
"@tracehound/core": "1.4.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^20.0.0",
|
package/tests/commands.test.ts
CHANGED
|
@@ -89,7 +89,7 @@ describe('CLI Commands', () => {
|
|
|
89
89
|
statusCommand.parse(['status', '--json'], { from: 'user' })
|
|
90
90
|
|
|
91
91
|
const output = logSpy.mock.calls.map((call: any) => call[0]).join('\n')
|
|
92
|
-
expect(output).toContain('"version": "1.
|
|
92
|
+
expect(output).toContain('"version": "1.4.0"')
|
|
93
93
|
})
|
|
94
94
|
|
|
95
95
|
it('stats command action should print stats', () => {
|
|
@@ -195,7 +195,7 @@ describe('CLI Commands', () => {
|
|
|
195
195
|
it('should get system snapshot', async () => {
|
|
196
196
|
const { getSnapshot } = await import('../src/commands/watch.js')
|
|
197
197
|
const snapshot = getSnapshot()
|
|
198
|
-
expect(snapshot.system.version).toBe('1.
|
|
198
|
+
expect(snapshot.system.version).toBe('1.4.0')
|
|
199
199
|
expect(snapshot.timestamp).toBeDefined()
|
|
200
200
|
})
|
|
201
201
|
|