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
ca5bdc19
Commit
ca5bdc19
authored
Aug 09, 2021
by
lianahus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added 'Set path for Unit Testing' to context menu
parent
9ab13daa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
test-tab.js
apps/remix-ide/src/app/tabs/test-tab.js
+28
-5
No files found.
apps/remix-ide/src/app/tabs/test-tab.js
View file @
ca5bdc19
...
...
@@ -13,7 +13,7 @@ const TestTabLogic = require('./testTab/testTab')
const
profile
=
{
name
:
'solidityUnitTesting'
,
displayName
:
'Solidity unit testing'
,
methods
:
[
'testFromPath'
,
'testFromSource'
],
methods
:
[
'testFromPath'
,
'testFromSource'
,
'setTestFolderPath'
],
events
:
[],
icon
:
'assets/img/unitTesting.webp'
,
description
:
'Fast tool to generate unit tests for your contracts'
,
...
...
@@ -50,6 +50,21 @@ module.exports = class TestTab extends ViewPlugin {
onActivationInternal
()
{
this
.
testTabLogic
=
new
TestTabLogic
(
this
.
fileManager
)
this
.
listenToEvents
()
this
.
call
(
'filePanel'
,
'registerContextMenuItem'
,
{
id
:
'solidityUnitTesting'
,
name
:
'setTestFolderPath'
,
label
:
'Set path for Unit Testing'
,
type
:
[
'folder'
],
extension
:
[],
path
:
[],
pattern
:
[]
})
}
async
setTestFolderPath
(
event
)
{
if
(
event
.
path
.
length
>
0
)
{
await
this
.
setCurrentPath
(
event
.
path
[
0
])
}
}
onDeactivation
()
{
...
...
@@ -76,10 +91,7 @@ module.exports = class TestTab extends ViewPlugin {
})
this
.
on
(
'filePanel'
,
'setWorkspace'
,
async
()
=>
{
this
.
testTabLogic
.
setCurrentPath
(
this
.
defaultPath
)
this
.
inputPath
.
value
=
this
.
defaultPath
this
.
updateDirList
(
this
.
defaultPath
)
await
this
.
updateForNewCurrent
()
this
.
setCurrentPath
(
this
.
defaultPath
)
})
this
.
fileManager
.
events
.
on
(
'noFileSelected'
,
()
=>
{
...
...
@@ -384,6 +396,17 @@ module.exports = class TestTab extends ViewPlugin {
return
this
.
testFromSource
(
fileContent
,
path
)
}
/**
* Changes the current path of Unit Testing Plugin
* @param path - the path from where UT plugin takes _test.sol files to run
*/
async
setCurrentPath
(
path
)
{
this
.
testTabLogic
.
setCurrentPath
(
path
)
this
.
inputPath
.
value
=
path
this
.
updateDirList
(
path
)
await
this
.
updateForNewCurrent
()
}
/*
Test is not associated with the UI
*/
...
...
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