Refactor: fixes lint error

This commit is contained in:
Hugo Häggmark
2020-12-07 08:20:56 +01:00
parent 7d201b75d7
commit d5d78a327d
2 changed files with 0 additions and 11 deletions
-2
View File
@@ -26,8 +26,6 @@ type LibraryPanel struct {
var (
// errLibraryPanelAlreadyAdded is an error when you add a library panel that already exists.
errLibraryPanelAlreadyAdded = fmt.Errorf("library panel with that title already exists")
// errLibraryPanelNotFound is an error for an unknown library panel definition.
errLibraryPanelNotFound = fmt.Errorf("could not find library panel definition")
)
// Commands
@@ -137,12 +137,3 @@ describe('toEmitValues matcher', () => {
});
});
});
describe.only('demo testing observables', () => {
it('toEmitValues demo', async () => {
const observable = of(1, 'a', 'I');
});
it('toEmitValuesWith demo', async () => {
const observable = of(1, 'a', 'I');
});
});