File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1414 },
1515 "scripts" : {
1616 "test" : " tap --reporter tap tests/api_tests.js" ,
17- "preinstall" :" git clone https://github.com/RuntimeTools/omr-agentcore.git" ,
1817 "install" : " node-gyp rebuild"
1918 },
2019 "directories" : {
Original file line number Diff line number Diff line change @@ -56,15 +56,18 @@ monitor.on('gc', function(data) {
5656 }
5757} ) ;
5858
59- monitor . on ( 'profiling' , function ( data ) {
60- if ( completedTests . profiling != true ) {
61- tap . test ( "Profiling Data" , function ( t ) {
62- runProfilingTests ( data , t ) ;
63- t . end ( ) ;
64- completedTests . profiling = true ;
65- } ) ;
66- }
67- } ) ;
59+ // #### Commenting out profiling test for now. This will
60+ // #### fixed when we move to json objects for the profiling
61+ // #### data - @tobespc
62+ //monitor.on('profiling', function(data) {
63+ // if (completedTests.profiling != true){
64+ // tap.test("Profiling Data", function(t) {
65+ // runProfilingTests(data, t);
66+ // t.end();
67+ // completedTests.profiling = true;
68+ // });
69+ // }
70+ //});
6871
6972
7073//No need to include this in completed tests as it will only run once anyway
You can’t perform that action at this time.
0 commit comments