We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad5414 commit c29d5afCopy full SHA for c29d5af
1 file changed
test/plugin/scan-test.js
@@ -119,10 +119,14 @@ function test(executable, core, t) {
119
sess.linesUntil(versionMark, (err, lines) => {
120
t.error(err);
121
t.ok(/Class_C\.arr/.test(lines.join('\n')), 'Should find parent reference with -r -n' );
122
- sess.send('v8 findrefs -s "My Class C"');
+ // TODO(mmarchini) see comment below
123
+ // sess.send('v8 findrefs -s "My Class C"');
124
+ sess.send('v8 findjsinstances Zlib');
125
sess.send('version');
126
});
127
128
+ /* TODO(mmarchini) we need to fix
129
+ * https://github.com/nodejs/llnode/issues/267 before re-enabling this test
130
// Test for findrefs -s
131
132
@@ -138,6 +142,7 @@ function test(executable, core, t) {
138
142
sess.send('v8 findjsinstances Zlib');
139
143
140
144
145
+ */
141
146
147
148
0 commit comments