2025-05-16 15:01:56 +00:00
|
|
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
2025-05-12 10:03:22 +00:00
|
|
|
import * as smartlogContext from '../ts_context/index.js';
|
|
|
|
|
|
|
|
tap.test('should correctly export strings from context module', async () => {
|
|
|
|
expect(typeof smartlogContext.standardExport).toEqual('string');
|
|
|
|
expect(smartlogContext.standardExport).toEqual('Hi there! :) This is an exported string');
|
|
|
|
});
|
|
|
|
|
|
|
|
export default tap.start();
|