diff options
author | Matthew Shao <me@matshao.com> | 2017-07-05 18:55:56 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-07-05 18:55:56 +0800 |
commit | 7516f706b41de0c10c2bf9b88278afb6e3edcd4a (patch) | |
tree | cf75e203be428adac4f7c2e3b64aa278170fdf3f /web/src/js/__tests__/ducks | |
parent | e8f3b740c944401a01d3c57e8d1c6051e92b8236 (diff) | |
download | mitmproxy-7516f706b41de0c10c2bf9b88278afb6e3edcd4a.tar.gz mitmproxy-7516f706b41de0c10c2bf9b88278afb6e3edcd4a.tar.bz2 mitmproxy-7516f706b41de0c10c2bf9b88278afb6e3edcd4a.zip |
[web] Update Option Modal UI and its tests.
Diffstat (limited to 'web/src/js/__tests__/ducks')
-rw-r--r-- | web/src/js/__tests__/ducks/tutils.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/web/src/js/__tests__/ducks/tutils.js b/web/src/js/__tests__/ducks/tutils.js index 9b92e676..a3e9c168 100644 --- a/web/src/js/__tests__/ducks/tutils.js +++ b/web/src/js/__tests__/ducks/tutils.js @@ -42,6 +42,36 @@ export function TStore(){ anticache: true, anticomp: false }, + options: { + booleanOption: { + choices: null, + default: false, + help: "foo", + type: "bool", + value: false + }, + strOption: { + choices: null, + default: null, + help: "foo", + type: "str", + value: "str content" + }, + intOption: { + choices: null, + default: 0, + help: "foo", + type: "int", + value: 1 + }, + choiceOption: { + choices: ['a', 'b', 'c'], + default: 'a', + help: "foo", + type: "str", + value: "b" + }, + }, flows: { selected: ["d91165be-ca1f-4612-88a9-c0f8696f3e29"], byId: {"d91165be-ca1f-4612-88a9-c0f8696f3e29": tflow}, |