#!/usr/bin/env -S node --no-warnings --loader ts-node/esm // @ts-check import { test } from 'tstest'; import { PuppetTest } from './fixtures/puppet-test/puppet-test.js'; test('Integration testing', async (t) => { const puppet = new PuppetTest(); t.ok(puppet, 'tbw'); }); //# sourceMappingURL=integration.spec.js.map