Skip to content

Commit 05c9e5e

Browse files
committed
feat: add tsx as a devDependency and create MicroKernel test suite
1 parent 038f691 commit 05c9e5e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"devDependencies": {
2626
"@changesets/cli": "^2.27.1",
2727
"@types/node": "^20.10.0",
28+
"tsx": "^4.21.0",
2829
"typescript": "^5.3.0"
2930
},
3031
"dependencies": {

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* MiniKernel Test Suite
2+
* MicroKernel Test Suite
33
*
4-
* Tests the new ObjectKernel (MiniKernel) architecture:
4+
* Tests the new ObjectKernel (MicroKernel) architecture:
55
* 1. Basic plugin registration and lifecycle
66
* 2. Service registry (registerService/getService)
77
* 3. Dependency resolution
@@ -262,7 +262,7 @@ async function testErrorHandling() {
262262

263263
// Run all tests
264264
async function runAllTests() {
265-
console.log('🧪 Starting MiniKernel Test Suite...\n');
265+
console.log('🧪 Starting MicroKernel Test Suite...\n');
266266

267267
try {
268268
await testBasicLifecycle();
@@ -273,7 +273,7 @@ async function runAllTests() {
273273
await testMultiplePlugins();
274274
await testErrorHandling();
275275

276-
console.log('\n✅ All MiniKernel tests passed!\n');
276+
console.log('\n✅ All MicroKernel tests passed!\n');
277277
} catch (error) {
278278
console.error('\n❌ Test failed:', error);
279279
process.exit(1);

0 commit comments

Comments
 (0)