Commit 01769676 authored by davidzagi93@gmail.com's avatar davidzagi93@gmail.com

implementing changes overridden

parent b3668913
......@@ -50,11 +50,11 @@ module.exports = {
'Toggles Terminal': function (browser: NightwatchBrowser) {
browser.waitForElementVisible('div[data-id="terminalContainer"]')
.assert.visible('div[data-id="terminalContainerDisplay"]')
.assert.elementPresent('div[data-id="terminalContainerDisplay"]')
.click('i[data-id="terminalToggleIcon"]')
.checkElementStyle('div[data-id="terminalToggleMenu"]', 'height', '35px')
.click('i[data-id="terminalToggleIcon"]')
.assert.visible('div[data-id="terminalContainerDisplay"]')
.checkElementStyle('div[data-id="terminalContainer-view"]', 'height', '36px')
// .click('i[data-id="terminalToggleIcon"]')
// .assert.visible('div[data-id="terminalContainerDisplay"]')
},
'Switch Tabs using tabs icon': function (browser: NightwatchBrowser) {
......
......@@ -39,6 +39,7 @@ class Terminal extends Plugin {
this.element = document.createElement('div')
this.element.setAttribute('class', 'panel')
this.element.setAttribute('id', 'terminal-view')
this.element.setAttribute('data-id', 'terminalContainer-view')
this.eventsDecoder = this.globalRegistry.get('eventsDecoder').api
this.txListener = this.globalRegistry.get('txlistener').api
this.sourceHighlighter = new SourceHighlighter()
......
......@@ -178,17 +178,9 @@ export interface FormStateProps {
url: string
type: 'iframe' | 'ws'
hash: string
methods: string[]
methods: any
location: string
<<<<<<< HEAD
<<<<<<< HEAD
canActivate?: any
=======
canActivate: any
>>>>>>> ceb5496f4 (fix whitespaces and canactivate)
=======
canActivate: string[]
>>>>>>> cb86d9b5a (Update types.d.ts)
}
export type PluginManagerProfile = Profile & {
......
......@@ -20,9 +20,6 @@ element.style {
.border-primary {
border-color: #007aa6!important;
}
.border {
border: 1px solid #3f4455!important;
}
/* seleted option should reflect the theme color */
.selectedOptions {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment