Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-performanceobserver.js')
-rw-r--r--test/parallel/test-performanceobserver.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/parallel/test-performanceobserver.js b/test/parallel/test-performanceobserver.js
index 5d6029fc0d5..06c1281666b 100644
--- a/test/parallel/test-performanceobserver.js
+++ b/test/parallel/test-performanceobserver.js
@@ -1,11 +1,13 @@
+// Flags: --expose-internals
'use strict';
const common = require('../common');
const Countdown = require('../common/countdown');
const assert = require('assert');
+const { internalBinding } = require('internal/test/binding');
const {
observerCounts: counts
-} = process.binding('performance');
+} = internalBinding('performance');
const {
performance,
PerformanceObserver,