diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-19 09:26:52 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-19 09:26:52 +0900 |
commit | e0c4182f14f908d13c8c814c7bc2b48a1791f881 (patch) | |
tree | a277179d51013c4a2384f076197a1dbcc442d2d0 /test | |
parent | 5b7f7f5dbd94b5bce7aee4667add187ffb9944f2 (diff) |
Follow as a clean architecture
Diffstat (limited to 'test')
-rw-r--r-- | test/content/InputDriver.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content/InputDriver.test.ts b/test/content/InputDriver.test.ts index ac5f95d..b9f2c28 100644 --- a/test/content/InputDriver.test.ts +++ b/test/content/InputDriver.test.ts @@ -1,6 +1,6 @@ import InputDriver from '../../src/content/InputDriver'; import { expect } from 'chai'; -import { Key } from '../../src/shared/utils/keys'; +import Key from '../../src/content/domains/Key'; describe('InputDriver', () => { let target: HTMLElement; |