pull/1/head
yann300 5 years ago
parent 1119c5bb59
commit 689585a10c
  1. 3
      src/app/editor/SourceHighlighters.js
  2. 4
      src/app/tabs/test-tab.js

@ -1,9 +1,6 @@
'use strict'
const SourceHighlighter = require('./sourceHighlighter')
import { Plugin } from '@remixproject/engine'
import * as packageJson from '../../../package.json'
// EditorApi:
// - methods: ['highlight', 'discardHighlight'],

@ -19,7 +19,7 @@ const profile = {
}
module.exports = class TestTab extends ViewPlugin {
constructor (fileManager, filePanel, compileTab, appManager, renderer, editor) {
constructor (fileManager, filePanel, compileTab, appManager, renderer) {
super(profile)
this.compileTab = compileTab
this._view = { el: null }
@ -120,7 +120,7 @@ module.exports = class TestTab extends ViewPlugin {
updateFinalResult (_errors, result, filename) {
this.testsSummary.hidden = false
if (_errors) {
_errors.forEach((err) => this.renderer.error(err.formattedMessage || err.message, this.testsSummary, {type: err.severity}) )
_errors.forEach((err) => this.renderer.error(err.formattedMessage || err.message, this.testsSummary, {type: err.severity}))
return
}
this.testsSummary.appendChild(yo`<div class=${css.summaryTitle}> ${filename} </div>`)

Loading…
Cancel
Save