mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e7658471d3
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)));
|