1/* eslint-disable node-core/required-modules */ 2/* eslint-disable node-core/require-common-first */ 3 4'use strict'; 5 6// We are not loading common because it will load the stream module, 7// defeating the purpose of this test. 8 9const { gzipSync } = require('zlib'); 10 11// Avoid regressions such as https://github.com/nodejs/node/issues/36615 12 13// This must not throw 14gzipSync('fooobar'); 15