import { expect, tap } from '@git.zone/tstest/tapbundle'; // module to test import * as smartconfig from '../ts/index.js'; interface ITestOptions { hi: string; deep: { deep1: string; deep2: string; }; } let testAppdata: smartconfig.AppData; tap.test('should create a valid AppData', async () => { testAppdata = new smartconfig.AppData({ envMapping: { deep: { deep1: '', }, }, }); }); export default tap.start();