test: unflake happy-eyeballs tests

This commit is contained in:
Max Schmitt 2024-07-25 19:23:30 +02:00
parent d8d5289e86
commit fb86947c9c

View file

@ -35,8 +35,12 @@ const __testHookLookup = (hostname: string): LookupAddress[] => {
let interceptedHostnameLookup: string | undefined; let interceptedHostnameLookup: string | undefined;
it.beforeEach(() => { it.beforeEach(({ server }) => {
interceptedHostnameLookup = undefined; interceptedHostnameLookup = undefined;
// Force a new connection every time, so that we can intercept the hostname lookup.
server.setExtraHeaders('/simple.json', {
'Connection': 'close',
});
}); });
it('get should work', async ({ context, server }) => { it('get should work', async ({ context, server }) => {