Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 5bb7c8b

Browse files
v-czgv-czg
v-czg
authored and
v-czg
committed
fix all comment
1 parent 6a8a095 commit 5bb7c8b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

test/commands.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as assert from "assert";
66
import * as vscode from "vscode";
77

88
// Defines a Mocha test suite to group tests of similar kind together
9-
suite("vscode-arduino extension commands test", () => {
9+
suite("Arduino: Commands Tests", () => {
1010
// tslint:disable-next-line: only-arrow-functions
1111
setup(function(done) {
1212
// Ensure that extension is activate while testing
@@ -25,7 +25,7 @@ suite("vscode-arduino extension commands test", () => {
2525

2626
// Arduino: Initialize:Scaffold a VS Code project with an Arduino sketch.
2727
// tslint:disable-next-line: only-arrow-functions
28-
test("should be able to run command: Arduino.initialize", function(done) {
28+
test("should be able to run command: arduino.initialize", function(done) {
2929
this.timeout(60 * 1000);
3030
try {
3131
// run "Arduino: Boards Manager" command.

test/extension.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as os from "os";
77
import * as vscode from "vscode";
88

99
// Defines a Mocha test suite to group tests of similar kind together
10-
suite("Arduino Extension Tests", () => {
10+
suite("Arduino: Extension Tests", () => {
1111
test("should be present", () => {
1212
assert.ok(vscode.extensions.getExtension("vsciot-vscode.vscode-arduino"));
1313
});
@@ -29,7 +29,7 @@ suite("Arduino Extension Tests", () => {
2929
}
3030
});
3131

32-
test("should be able to register Arduino commands", () => {
32+
test("should be able to register arduino commands", () => {
3333
return vscode.commands.getCommands(true).then((commands) => {
3434
const ARDUINO_COMMANDS = [
3535
"arduino.verify",

test/librarymanager.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as assert from "assert";
2-
import * as os from "os";
2+
33
import * as Path from "path";
44
import * as TypeMoq from "typemoq";
55

@@ -67,7 +67,7 @@ suite("Arduino: Library Manager.", () => {
6767

6868
// Arduino: Library Manager: Install extenal libarary.
6969
// tslint:disable-next-line: only-arrow-functions
70-
test("should be able to Install libraries", function(done) {
70+
test("should be able to install libraries", function(done) {
7171
this.timeout(3 * 60 * 1000);
7272
try {
7373
// Library Manager: Install extenal libarary.

test/verify.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as vscode from "vscode";
88
// Defines a Mocha test suite to group tests of similar kind together
99
suite("Arduino: Verify: Build (verify) your sketch files.", () => {
1010
// tslint:disable-next-line: only-arrow-functions
11-
test("should be able to run command: Arduino verify", function(done) {
11+
test("should be able to run command: arduino verify", function(done) {
1212
this.timeout(3 * 60 * 1000);
1313
try {
1414
// Press ctrl+alt+r to run "arduino:verify" command.

0 commit comments

Comments
 (0)