Skip to content

Commit 9c35f02

Browse files
committed
l.
1 parent 37bfce5 commit 9c35f02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ describe('Context', () => {
145145
it('Bubbles up error', () => {
146146
const errorFn = () => {
147147
throw new Error('That went badly.');
148-
}
148+
};
149149
expect(() => Context.run(errorFn)).toThrow();
150150
});
151151

@@ -154,7 +154,7 @@ describe('Context', () => {
154154
await runWithinPromise();
155155
expect(true).toBeFlasy();
156156
} catch (e) {
157-
expect(e).toBeInstanceOf(Error)
157+
expect(e).toBeInstanceOf(Error);
158158
done();
159159
}
160160
});

0 commit comments

Comments
 (0)