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
c1b4f736
Commit
c1b4f736
authored
Jul 03, 2018
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix reference
parent
b5e4dbcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
run-tab.js
src/app/tabs/run-tab.js
+1
-1
test-tab.js
src/app/tabs/test-tab.js
+1
-1
No files found.
src/app/tabs/run-tab.js
View file @
c1b4f736
...
...
@@ -273,7 +273,7 @@ function makeRecorder (registry, runTabEvent, self) {
if
(
txArray
.
length
)
{
var
noInstancesText
=
self
.
_view
.
noInstancesText
if
(
noInstancesText
.
parentNode
)
{
noInstancesText
.
parentNode
.
removeChild
(
noInstancesText
)
}
recorder
.
run
(
txArray
,
accounts
,
options
,
abis
,
linkReferences
,
udapp
,
(
abi
,
address
,
contractName
)
=>
{
recorder
.
run
(
txArray
,
accounts
,
options
,
abis
,
linkReferences
,
self
.
_deps
.
udapp
,
(
abi
,
address
,
contractName
)
=>
{
self
.
_view
.
instanceContainer
.
appendChild
(
udappUI
.
renderInstanceFromABI
(
abi
,
address
,
contractName
))
})
}
...
...
src/app/tabs/test-tab.js
View file @
c1b4f736
...
...
@@ -85,7 +85,7 @@ module.exports = class TestTab {
container
.
innerHTML
=
''
var
path
=
this
.
_deps
.
fileManager
.
currentPath
()
var
tests
=
[]
api
.
filesFromPath
(
path
,
(
error
,
files
)
=>
{
this
.
_deps
.
fileManager
.
filesFromPath
(
path
,
(
error
,
files
)
=>
{
if
(
!
error
)
{
for
(
var
file
in
files
)
{
if
(
/.
(
_test.sol
)
$/
.
exec
(
file
))
tests
.
push
(
path
+
file
)
...
...
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