mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 11:41:22 +00:00

This commit removes unnecessary flags used when starting tests via the "// Flags:" directive. PR-URL: https://github.com/nodejs/node/pull/25277 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const v8 = require('v8');
|
|
|
|
process.on('warning', common.mustNotCall());
|
|
v8.deserialize(v8.serialize(Buffer.alloc(0)));
|