Skip to content

Commit

Permalink
Fix some lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 13, 2021
1 parent 9c159cb commit 520b3e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
import BaseViewModel from '@jbrowse/core/pluggableElementTypes/models/BaseViewModel'
import { MenuItem } from '@jbrowse/core/ui'
import { getSession, isSessionModelWithWidgets } from '@jbrowse/core/util'
import assemblyManagerFactory, {
assemblyConfigSchemas as AssemblyConfigSchemasFactory,
} from '@jbrowse/core/assemblyManager'
import { assemblyConfigSchemas as AssemblyConfigSchemasFactory } from '@jbrowse/core/assemblyManager'
import {
LinearGenomeViewModel,
LinearGenomeViewStateModel,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import PluginManager from '@jbrowse/core/PluginManager'
import LinearGenomeView from '@jbrowse/plugin-linear-genome-view'
import LinearGenomeViewPlugin from '@jbrowse/plugin-linear-genome-view'
import SequencePlugin from '@jbrowse/plugin-sequence'
import stateModelFactory from './model'

test('creation', () => {
const pluginManager = new PluginManager([new LinearGenomeView()])
const pluginManager = new PluginManager([
new LinearGenomeViewPlugin(),
new SequencePlugin(),
])
.createPluggableElements()
.configure()
const model = stateModelFactory(pluginManager)
Expand Down

0 comments on commit 520b3e3

Please sign in to comment.