Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
afec3b9b
Commit
afec3b9b
authored
Nov 29, 2020
by
ioedeveloper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove script and update nightwatch commands
parent
2247471f
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
100 deletions
+36
-100
script.js
apps/remix-ide-e2e/script.js
+0
-27
script.sh
apps/remix-ide-e2e/script.sh
+0
-24
browser_tests_chrome.sh
apps/remix-ide/ci/browser_tests_chrome.sh
+2
-2
browser_tests_firefox.sh
apps/remix-ide/ci/browser_tests_firefox.sh
+2
-2
browser_tests_run_deploy.sh
apps/remix-ide/ci/browser_tests_run_deploy.sh
+1
-1
package.json
package.json
+31
-32
workspace.json
workspace.json
+0
-12
No files found.
apps/remix-ide-e2e/script.js
deleted
100644 → 0
View file @
2247471f
/* eslint-disable */
const
{
spawn
}
=
require
(
'child_process'
)
const
commands
=
process
.
argv
let
filePath
=
''
,
env
=
''
commands
.
forEach
(
val
=>
{
if
(
val
.
indexOf
(
'--filePath'
)
!==
-
1
)
filePath
=
val
.
split
(
'='
)[
1
]
else
if
(
val
.
indexOf
(
'--env'
)
!==
-
1
)
env
=
val
.
split
(
'='
)[
1
]
})
const
bash
=
spawn
(
'apps/remix-ide-e2e/script.sh'
,
[
env
,
filePath
]);
bash
.
stdout
.
on
(
'data'
,
(
data
)
=>
{
console
.
log
(
data
.
toString
())
})
bash
.
stderr
.
on
(
'data'
,
(
data
)
=>
{
console
.
log
(
data
.
toString
())
})
bash
.
on
(
'exit'
,
(
code
)
=>
{
console
.
log
(
`Process exited with code
${
code
}
`
)
if
(
parseInt
(
code
)
===
1
)
{
throw
new
Error
(
'Failed with error code 1'
)
}
})
\ No newline at end of file
apps/remix-ide-e2e/script.sh
deleted
100755 → 0
View file @
2247471f
#!/bin/bash
TEST_SCRIPT
=
'node_modules/.bin/nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js'
;
if
[
{
$1
}
!=
undefined
]
then
TEST_SCRIPT
=
${
TEST_SCRIPT
}
' --env '
$1
;
else
TEST_SCRIPT
=
${
TEST_SCRIPT
}
' --env chrome'
;
fi
if
[
{
$2
}
!=
undefined
]
then
TEST_SCRIPT
=
${
TEST_SCRIPT
}
' '
$2
;
fi
eval
$TEST_SCRIPT
||
TEST_EXITCODE
=
1
;
echo
$TEST_EXITCODE
if
[
"
$TEST_EXITCODE
"
-eq
"1"
]
then
exit
1
fi
\ No newline at end of file
apps/remix-ide/ci/browser_tests_chrome.sh
View file @
afec3b9b
...
@@ -13,11 +13,11 @@ npm run remixd &
...
@@ -13,11 +13,11 @@ npm run remixd &
sleep
5
sleep
5
np
x nx build remix-ide-
e2e
np
m run build:
e2e
TESTFILES
=
$(
circleci tests glob
"dist/apps/remix-ide-e2e/src/tests/**/*.test.js"
| circleci tests
split
--split-by
=
timings
)
TESTFILES
=
$(
circleci tests glob
"dist/apps/remix-ide-e2e/src/tests/**/*.test.js"
| circleci tests
split
--split-by
=
timings
)
for
TESTFILE
in
$TESTFILES
;
do
for
TESTFILE
in
$TESTFILES
;
do
npx n
x e2e remix-ide-e2e
--filePath
=
$TESTFILE
--env
=
chrome
||
TEST_EXITCODE
=
1
npx n
ightwatch
--config
dist/apps/remix-ide-e2e/nightwatch.js
$TESTFILE
--env
=
chrome
||
TEST_EXITCODE
=
1
done
done
echo
"
$TEST_EXITCODE
"
echo
"
$TEST_EXITCODE
"
...
...
apps/remix-ide/ci/browser_tests_firefox.sh
View file @
afec3b9b
...
@@ -13,11 +13,11 @@ npm run remixd &
...
@@ -13,11 +13,11 @@ npm run remixd &
sleep
5
sleep
5
np
x nx build remix-ide-
e2e
np
m run build:
e2e
TESTFILES
=
$(
circleci tests glob
"dist/apps/remix-ide-e2e/src/tests/**/*.test.js"
| circleci tests
split
--split-by
=
timings
)
TESTFILES
=
$(
circleci tests glob
"dist/apps/remix-ide-e2e/src/tests/**/*.test.js"
| circleci tests
split
--split-by
=
timings
)
for
TESTFILE
in
$TESTFILES
;
do
for
TESTFILE
in
$TESTFILES
;
do
npx n
x e2e remix-ide-e2e
--filePath
=
$TESTFILE
--env
=
firefox
||
TEST_EXITCODE
=
1
npx n
ightwatch
--config
dist/apps/remix-ide-e2e/nightwatch.js
$TESTFILE
--env
=
firefox
||
TEST_EXITCODE
=
1
done
done
echo
"
$TEST_EXITCODE
"
echo
"
$TEST_EXITCODE
"
...
...
apps/remix-ide/ci/browser_tests_run_deploy.sh
View file @
afec3b9b
...
@@ -11,7 +11,7 @@ npm run serve &
...
@@ -11,7 +11,7 @@ npm run serve &
sleep
5
sleep
5
np
x nx build remix-ide-
e2e
np
m run build:
e2e
npm run nightwatch_local_runAndDeploy
||
TEST_EXITCODE
=
1
npm run nightwatch_local_runAndDeploy
||
TEST_EXITCODE
=
1
echo
"
$TEST_EXITCODE
"
echo
"
$TEST_EXITCODE
"
...
...
package.json
View file @
afec3b9b
...
@@ -27,11 +27,9 @@
...
@@ -27,11 +27,9 @@
"build"
:
"nx build"
,
"build"
:
"nx build"
,
"test"
:
"nx test"
,
"test"
:
"nx test"
,
"lint"
:
"nx lint"
,
"lint"
:
"nx lint"
,
"e2e"
:
"nx e2e remix-ide-e2e"
,
"affected:apps"
:
"nx affected:apps"
,
"affected:apps"
:
"nx affected:apps"
,
"affected:libs"
:
"nx affected:libs"
,
"affected:libs"
:
"nx affected:libs"
,
"affected:build"
:
"nx affected:build"
,
"affected:build"
:
"nx affected:build"
,
"affected:e2e"
:
"nx affected:e2e"
,
"affected:test"
:
"nx affected:test"
,
"affected:test"
:
"nx affected:test"
,
"affected:lint"
:
"nx affected:lint"
,
"affected:lint"
:
"nx affected:lint"
,
"affected:dep-graph"
:
"nx affected:dep-graph"
,
"affected:dep-graph"
:
"nx affected:dep-graph"
,
...
@@ -47,42 +45,43 @@
...
@@ -47,42 +45,43 @@
"build:libs"
:
"nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd"
,
"build:libs"
:
"nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd"
,
"test:libs"
:
"nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd"
,
"test:libs"
:
"nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd"
,
"publish:libs"
:
"npm run build:libs & lerna publish --skip-git & npm run bumpVersion:libs"
,
"publish:libs"
:
"npm run build:libs & lerna publish --skip-git & npm run bumpVersion:libs"
,
"build:e2e"
:
"tsc -p apps/remix-ide-e2e/tsconfig.e2e.json"
,
"bumpVersion:libs"
:
"gulp & gulp syncLibVersions;"
,
"bumpVersion:libs"
:
"gulp & gulp syncLibVersions;"
,
"browsertest"
:
"sleep 5 && npm run nightwatch_local"
,
"browsertest"
:
"sleep 5 && npm run nightwatch_local"
,
"csslint"
:
"csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/"
,
"csslint"
:
"csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/"
,
"downloadsolc_root"
:
"wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.7.4+commit.3f05b770.js -O ./apps/remix-ide/soljson.js"
,
"downloadsolc_root"
:
"wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.7.4+commit.3f05b770.js -O ./apps/remix-ide/soljson.js"
,
"make-mock-compiler"
:
"node apps/remix-ide/ci/makeMockCompiler.js"
,
"make-mock-compiler"
:
"node apps/remix-ide/ci/makeMockCompiler.js"
,
"minify"
:
"uglifyjs --in-source-map inline --source-map-inline -c warnings=false"
,
"minify"
:
"uglifyjs --in-source-map inline --source-map-inline -c warnings=false"
,
"nightwatch_parallel"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e
-env=chrome,firefox"
,
"nightwatch_parallel"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js -
-env=chrome,firefox"
,
"nightwatch_local_firefox"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e
--env=firefox"
,
"nightwatch_local_firefox"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
--env=firefox"
,
"nightwatch_local_chrome"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e
--env=chrome"
,
"nightwatch_local_chrome"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
--env=chrome"
,
"nightwatch_local_ballot"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/ballot.test.js --env=chrome"
,
"nightwatch_local_ballot"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/ballot.test.js --env=chrome"
,
"nightwatch_local_ballot_0_4_11"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/ballot_0_4_11.test.js --env=chrome"
,
"nightwatch_local_ballot_0_4_11"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/ballot_0_4_11.test.js --env=chrome"
,
"nightwatch_local_usingWorker"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/usingWebWorker.test.js --env=chrome"
,
"nightwatch_local_usingWorker"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/usingWebWorker.test.js --env=chrome"
,
"nightwatch_local_libraryDeployment"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/libraryDeployment.test.js --env=chrome"
,
"nightwatch_local_libraryDeployment"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/libraryDeployment.test.js --env=chrome"
,
"nightwatch_local_solidityImport"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/solidityImport.test.js --env=chrome"
,
"nightwatch_local_solidityImport"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/solidityImport.test.js --env=chrome"
,
"nightwatch_local_recorder"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/recorder.test.js --env=chrome"
,
"nightwatch_local_recorder"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/recorder.test.js --env=chrome"
,
"nightwatch_local_transactionExecution"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/transactionExecution.test.js --env=chrome"
,
"nightwatch_local_transactionExecution"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/transactionExecution.test.js --env=chrome"
,
"nightwatch_local_staticAnalysis"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/staticAnalysis.test.js --env=chrome"
,
"nightwatch_local_staticAnalysis"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/staticAnalysis.test.js --env=chrome"
,
"nightwatch_local_signingMessage"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/signingMessage.test.js --env=chrome"
,
"nightwatch_local_signingMessage"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/signingMessage.test.js --env=chrome"
,
"nightwatch_local_specialFunctions"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/specialFunctions.test.js --env=chrome"
,
"nightwatch_local_specialFunctions"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/specialFunctions.test.js --env=chrome"
,
"nightwatch_local_solidityUnitTests"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/solidityUnittests.test.js --env=chrome"
,
"nightwatch_local_solidityUnitTests"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/solidityUnittests.test.js --env=chrome"
,
"nightwatch_local_remixd"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/remixd.test.js --env=chrome"
,
"nightwatch_local_remixd"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/remixd.test.js --env=chrome"
,
"nightwatch_local_terminal"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/terminal.test.js --env=chrome"
,
"nightwatch_local_terminal"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/terminal.test.js --env=chrome"
,
"nightwatch_local_gist"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/gist.test.js --env=chrome"
,
"nightwatch_local_gist"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/gist.test.js --env=chrome"
,
"nightwatch_local_workspace"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/workspace.test.js --env=chrome"
,
"nightwatch_local_workspace"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/workspace.test.js --env=chrome"
,
"nightwatch_local_defaultLayout"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/defaultLayout.test.js --env=chrome"
,
"nightwatch_local_defaultLayout"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/defaultLayout.test.js --env=chrome"
,
"nightwatch_local_pluginManager"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/pluginManager.test.js --env=chrome"
,
"nightwatch_local_pluginManager"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/pluginManager.test.js --env=chrome"
,
"nightwatch_local_publishContract"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/publishContract.test.js --env=chrome"
,
"nightwatch_local_publishContract"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/publishContract.test.js --env=chrome"
,
"nightwatch_local_generalSettings"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/generalSettings.test.js --env=chrome"
,
"nightwatch_local_generalSettings"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/generalSettings.test.js --env=chrome"
,
"nightwatch_local_fileExplorer"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/fileExplorer.test.js --env=chrome"
,
"nightwatch_local_fileExplorer"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/fileExplorer.test.js --env=chrome"
,
"nightwatch_local_debugger"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/debugger.test.js --env=chrome"
,
"nightwatch_local_debugger"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/debugger.test.js --env=chrome"
,
"nightwatch_local_editor"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/editor.test.js --env=chrome"
,
"nightwatch_local_editor"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/editor.test.js --env=chrome"
,
"nightwatch_local_compiler"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/compiler_api.test.js --env=chrome"
,
"nightwatch_local_compiler"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/compiler_api.test.js --env=chrome"
,
"nightwatch_local_txListener"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/txListener.test.js --env=chrome"
,
"nightwatch_local_txListener"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/txListener.test.js --env=chrome"
,
"nightwatch_local_fileManager"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/fileManager_api.test.js --env=chrome"
,
"nightwatch_local_fileManager"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/fileManager_api.test.js --env=chrome"
,
"nightwatch_local_runAndDeploy"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/runAndDeploy.js --env=chrome-runAndDeploy"
,
"nightwatch_local_runAndDeploy"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/runAndDeploy.js --env=chrome-runAndDeploy"
,
"nightwatch_local_url"
:
"n
x build remix-ide-e2e; nx e2e remix-ide-e2e --filePath=
dist/apps/remix-ide-e2e/src/tests/url.test.js --env=chrome"
,
"nightwatch_local_url"
:
"n
pm run build:e2e & nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js
dist/apps/remix-ide-e2e/src/tests/url.test.js --env=chrome"
,
"onchange"
:
"onchange apps/remix-ide/build/app.js -- npm-run-all lint"
,
"onchange"
:
"onchange apps/remix-ide/build/app.js -- npm-run-all lint"
,
"remixd"
:
"nx build remixd & nx serve remixd --folder=./apps/remix-ide/contracts --remixide=http://127.0.0.1:8080"
,
"remixd"
:
"nx build remixd & nx serve remixd --folder=./apps/remix-ide/contracts --remixide=http://127.0.0.1:8080"
,
"selenium"
:
"selenium-standalone start"
,
"selenium"
:
"selenium-standalone start"
,
...
...
workspace.json
View file @
afec3b9b
...
@@ -100,18 +100,6 @@
...
@@ -100,18 +100,6 @@
"sourceRoot"
:
"apps/remix-ide-e2e/src"
,
"sourceRoot"
:
"apps/remix-ide-e2e/src"
,
"projectType"
:
"application"
,
"projectType"
:
"application"
,
"architect"
:
{
"architect"
:
{
"build"
:
{
"builder"
:
"@nrwl/workspace:run-commands"
,
"options"
:
{
"commands"
:
[
"tsc -p apps/remix-ide-e2e/tsconfig.e2e.json"
]
}
},
"e2e"
:
{
"builder"
:
"@nrwl/workspace:run-commands"
,
"options"
:
{
"commands"
:
[
"node apps/remix-ide-e2e/script.js"
]
}
},
"lint"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"options"
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment