mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Remove unused variables from specs
This commit is contained in:
@@ -1,11 +1,4 @@
|
||||
const {
|
||||
it,
|
||||
fit,
|
||||
ffit,
|
||||
fffit,
|
||||
beforeEach,
|
||||
afterEach
|
||||
} = require('./helpers/async-spec-helpers') // eslint-disable-line no-unused-vars
|
||||
const { it, beforeEach } = require('./helpers/async-spec-helpers')
|
||||
|
||||
describe('About', () => {
|
||||
let workspaceElement
|
||||
|
||||
@@ -1,12 +1,9 @@
|
||||
const {
|
||||
it,
|
||||
fit,
|
||||
ffit,
|
||||
fffit,
|
||||
beforeEach,
|
||||
afterEach,
|
||||
conditionPromise
|
||||
} = require('./helpers/async-spec-helpers') // eslint-disable-line no-unused-vars
|
||||
} = require('./helpers/async-spec-helpers')
|
||||
const MockUpdater = require('./mocks/updater')
|
||||
|
||||
describe('the status bar', () => {
|
||||
|
||||
@@ -1,12 +1,5 @@
|
||||
const { shell } = require('electron')
|
||||
const {
|
||||
it,
|
||||
fit,
|
||||
ffit,
|
||||
fffit,
|
||||
beforeEach,
|
||||
afterEach
|
||||
} = require('./helpers/async-spec-helpers') // eslint-disable-line no-unused-vars
|
||||
const { it, beforeEach, afterEach } = require('./helpers/async-spec-helpers')
|
||||
const main = require('../lib/main')
|
||||
const AboutView = require('../lib/components/about-view')
|
||||
const UpdateView = require('../lib/components/update-view')
|
||||
|
||||
@@ -4,12 +4,10 @@ const UIWatcher = require('../lib/ui-watcher')
|
||||
|
||||
const {
|
||||
it,
|
||||
fit,
|
||||
ffit,
|
||||
afterEach,
|
||||
beforeEach,
|
||||
conditionPromise
|
||||
} = require('./async-spec-helpers') // eslint-disable-line no-unused-vars
|
||||
} = require('./async-spec-helpers')
|
||||
|
||||
describe('UIWatcher', () => {
|
||||
let uiWatcher = null
|
||||
|
||||
Reference in New Issue
Block a user