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

implementing changes overridden

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