Skip to content

Commit

Permalink
standard
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Aug 29, 2019
1 parent 1119c5b commit 35687e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/app/editor/SourceHighlighters.js
Original file line number Diff line number Diff line change
@@ -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'],

Expand Down
2 changes: 1 addition & 1 deletion src/app/tabs/test-tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>`)
Expand Down

0 comments on commit 35687e4

Please sign in to comment.