diff options
Diffstat (limited to 'test/content/mock/MockFocusPresenter.ts')
-rw-r--r-- | test/content/mock/MockFocusPresenter.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/content/mock/MockFocusPresenter.ts b/test/content/mock/MockFocusPresenter.ts new file mode 100644 index 0000000..43454d0 --- /dev/null +++ b/test/content/mock/MockFocusPresenter.ts @@ -0,0 +1,7 @@ +import FocusPresenter from "../../../src/content/presenters/FocusPresenter"; + +export default class MockFocusPresenter implements FocusPresenter { + focusFirstElement(): boolean { + throw new Error("not implemented"); + } +} |