You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.equal(foundJavaCommands.length,JAVA_COMMANDS.length,'Some Java commands are not registered properly or a new command is not added to the test');
60
60
});
61
61
});
62
62
63
-
test('should parse VM arguments',function(){
63
+
test('should parse VM arguments',()=>{
64
64
constuserArgs='-Xmx512m -noverify -Dfoo=\"something with blank\" ';
65
65
constvmArgs=['-noverify','foo'];
66
66
@@ -73,7 +73,7 @@ suite('Java Language Extension', () => {
73
73
assert.equal('-Dfoo=something with blank',vmArgs[3]);
74
74
});
75
75
76
-
test('should parse VM arguments with spaces',function(){
76
+
test('should parse VM arguments with spaces',()=>{
0 commit comments