Skip to content

Commit 2a1e32f

Browse files
committed
Исправил команды VSC от знания прямых путей 1testrunner и 1bdd #17
1 parent aa4dcae commit 2a1e32f

File tree

1 file changed

+6
-19
lines changed

1 file changed

+6
-19
lines changed

.vscode/tasks.json

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,11 @@
1010
},
1111
"isShellCommand": true,
1212
"showOutput": "silent",
13-
"args": [
14-
"-encoding=utf-8"
15-
],
1613
"tasks": [
1714
{
1815
"taskName": "Testing project",
1916
"args": [
20-
"oscript",
21-
"-encoding=utf-8",
22-
"${workspaceRoot}/../../1testrunner/testrunner.os",
17+
"1testrunner",
2318
"-runall",
2419
"${workspaceRoot}/tests"
2520
],
@@ -41,9 +36,7 @@
4136
{
4237
"taskName": "Testing current test-file",
4338
"args": [
44-
"oscript",
45-
"-encoding=utf-8",
46-
"${workspaceRoot}/../../1testrunner/testrunner.os",
39+
"1testrunner",
4740
"-run",
4841
"${file}",
4942
],
@@ -65,10 +58,8 @@
6558
{
6659
"taskName": "Exec all features",
6760
"args": [
68-
"oscript",
69-
"-encoding=utf-8",
70-
"${workspaceRoot}/../1bdd/src/bdd.os",
71-
"${workspaceRoot}/.",
61+
"1bdd",
62+
"${workspaceRoot}/features",
7263
"-out",
7364
"${workspaceRoot}/exec.log"
7465
],
@@ -90,9 +81,7 @@
9081
{
9182
"taskName": "Exec feature",
9283
"args": [
93-
"oscript",
94-
"-encoding=utf-8",
95-
"${workspaceRoot}/../1bdd/src/bdd.os",
84+
"1bdd",
9685
"${file}",
9786
"-out",
9887
"${workspaceRoot}/exec.log"
@@ -117,9 +106,7 @@
117106
{
118107
"taskName": "Generate feature steps",
119108
"args": [
120-
"oscript",
121-
"-encoding=utf-8",
122-
"${workspaceRoot}/../1bdd/src/bdd.os",
109+
"1bdd",
123110
"gen",
124111
"${file}",
125112
"-out",

0 commit comments

Comments
 (0)