Skip to content

Commit a32eeed

Browse files
tobespchhellyer
authored andcommitted
remove preinstall script for omr-agentcore (#235)
* remove profiling test * remove preinstall clone of omr-agentcore
1 parent 87b5199 commit a32eeed

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
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": {

tests/api_tests.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)