Commit 8679d597 authored by Hannah Stepanek's avatar Hannah Stepanek

Run upgraded prettier and fix styleing

parent 6a0d4cd6
...@@ -33,12 +33,10 @@ describe('NewNoteButton', function() { ...@@ -33,12 +33,10 @@ describe('NewNoteButton', function() {
}; };
fakeStore = { fakeStore = {
createAnnotation: sinon.stub(), createAnnotation: sinon.stub(),
frames: sinon frames: sinon.stub().returns([
.stub() { id: null, uri: 'www.example.org' },
.returns([ { id: '1', uri: 'www.example.org' },
{ id: null, uri: 'www.example.org' }, ]),
{ id: '1', uri: 'www.example.org' },
]),
}; };
NewNoteButton.$imports.$mock(mockImportedComponents()); NewNoteButton.$imports.$mock(mockImportedComponents());
......
...@@ -47,7 +47,10 @@ describe('sidebar/services/view-filter', () => { ...@@ -47,7 +47,10 @@ describe('sidebar/services/view-filter', () => {
let annotations; let annotations;
beforeEach(() => { beforeEach(() => {
annotations = [{ id: 1, text: poem.tiger }, { id: 2, text: poem.raven }]; annotations = [
{ id: 1, text: poem.tiger },
{ id: 2, text: poem.raven },
];
}); });
it('requires all terms to match for "and" operator', () => { it('requires all terms to match for "and" operator', () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment