Compare commits

...

2 Commits

4 changed files with 8 additions and 23 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2025-05-15 - 1.3.1 - fix(settings)
Add local permissions configuration and remove obsolete test output log
- Added .claude/settings.local.json to configure allowed permissions for web fetch and bash commands
- Removed test-output.log to eliminate accidental commit of test artifacts
## 2025-05-15 - 1.3.0 - feat(logger)
Improve logging output and add --logfile support for persistent logs

View File

@ -1,6 +1,6 @@
{
"name": "@git.zone/tstest",
"version": "1.3.0",
"version": "1.3.1",
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"main": "dist_ts/index.js",

View File

@ -1,21 +0,0 @@
🔍 Test Discovery
Mode: file
Pattern: test/test.single.ts
Found: 1 test file(s)
▶️ test/test.single.ts (1/1)
Runtime: node.js
✅ single file test execution (1ms)
Summary: 1/1 PASSED
📊 Test Summary
┌────────────────────────────────┐
│ Total Files: 1 │
│ Total Tests: 1 │
│ Passed: 1 │
│ Failed: 0 │
│ Duration: 1230ms │
└────────────────────────────────┘
ALL TESTS PASSED! 🎉

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tstest',
version: '1.3.0',
version: '1.3.1',
description: 'a test utility to run tests that match test/**/*.ts'
}