Files
smartregistry/test/test.ts
Juergen Kunz 3cb31872ae Initial commit: project setup with TypeScript and CI/CD configuration
This commit establishes the foundational structure for @push.rocks/smartregistry,
a registry for npm modules and OCI images. Includes development environment
configuration, build tooling, and CI/CD workflows for automated testing and publishing.

Co-authored-by: Ona <no-reply@ona.com>
2025-11-19 14:41:19 +00:00

9 lines
193 B
TypeScript

import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as smartregistry from '../ts/index.js';
tap.test('first test', async () => {
console.log(smartregistry);
});
tap.start();