Skip to content

Instantly share code, notes, and snippets.

View radekbenkel's full-sized avatar

Radek Benkel radekbenkel

View GitHub Profile
@radekbenkel
radekbenkel / broken.mjs
Last active February 12, 2025 09:01
nock@14 & testcontainers
import { GenericContainer } from 'testcontainers';
import nock from 'nock';
const container = new GenericContainer("alpine");
const startedContainer = await container.start();
console.info('Container started');
await startedContainer.stop();