diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-04-06 13:43:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 13:43:04 +0000 |
commit | 859d0372b5bb7297a0b8ed37a559d88a425f3799 (patch) | |
tree | 293adc0e1963b4ded2760107aa69d1f793751114 /e2e/ambassador/src/client/windows.js | |
parent | d37e0b92d39fe2f721bfe3330395043eb55861f3 (diff) | |
parent | b604a942a84d7c5d54029b48ae698d15ffe4f5ac (diff) |
Merge pull request #559 from ueokande/lanthan-integration-test
Replace E2E tests with lanthan
Diffstat (limited to 'e2e/ambassador/src/client/windows.js')
-rw-r--r-- | e2e/ambassador/src/client/windows.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/e2e/ambassador/src/client/windows.js b/e2e/ambassador/src/client/windows.js deleted file mode 100644 index f92405a..0000000 --- a/e2e/ambassador/src/client/windows.js +++ /dev/null @@ -1,27 +0,0 @@ -import { - WINDOWS_CREATE, WINDOWS_REMOVE, WINDOWS_GET -} from '../shared/messages'; -import * as ipc from './ipc'; - -const create = (url) => { - return ipc.send({ - type: WINDOWS_CREATE, - url, - }); -}; - -const remove = (windowId) => { - return ipc.send({ - type: WINDOWS_REMOVE, - windowId, - }); -}; - -const get = (windowId) => { - return ipc.send({ - type: WINDOWS_GET, - windowId, - }); -}; - -export { create, remove, get }; |