diff options
author | Matthew Shao <me@matshao.com> | 2017-06-30 20:46:50 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-06-30 20:46:50 +0800 |
commit | e28f3881dc9a72da73bebcaa7606a2c681151d6e (patch) | |
tree | f147de2e488b8d5eb4fd73c977f24c88cdf82ab4 /web | |
parent | 7baf3069b169e8196e5d389e655a3a187b4329d9 (diff) | |
download | mitmproxy-e28f3881dc9a72da73bebcaa7606a2c681151d6e.tar.gz mitmproxy-e28f3881dc9a72da73bebcaa7606a2c681151d6e.tar.bz2 mitmproxy-e28f3881dc9a72da73bebcaa7606a2c681151d6e.zip |
[web] Update tests for components.
Diffstat (limited to 'web')
-rw-r--r-- | web/src/js/__tests__/components/Modal/__snapshots__/ModalSpec.js.snap | 60 |
1 files changed, 32 insertions, 28 deletions
diff --git a/web/src/js/__tests__/components/Modal/__snapshots__/ModalSpec.js.snap b/web/src/js/__tests__/components/Modal/__snapshots__/ModalSpec.js.snap index f25c3330..4fe163d1 100644 --- a/web/src/js/__tests__/components/Modal/__snapshots__/ModalSpec.js.snap +++ b/web/src/js/__tests__/components/Modal/__snapshots__/ModalSpec.js.snap @@ -21,39 +21,43 @@ exports[`Modal Component should render correctly 2`] = ` <div className="modal-content" > - <div - className="modal-header" - > - <button - className="close" - data-dismiss="modal" - onClick={[Function]} - type="button" + <div> + <div + className="modal-header" > - <i - className="fa fa-fw fa-times" - /> - </button> + <button + className="close" + data-dismiss="modal" + onClick={[Function]} + type="button" + > + <i + className="fa fa-fw fa-times" + /> + </button> + <div + className="modal-title" + > + <h4> + Options + </h4> + </div> + </div> <div - className="modal-title" + className="modal-body" > - <h4> - Options - </h4> + ... </div> - </div> - <div - className="modal-body" - /> - <div - className="modal-footer" - > - <button - className="btn btn-primary" - type="button" + <div + className="modal-footer" > - Save Changes - </button> + <button + className="btn btn-primary" + type="button" + > + Save Changes + </button> + </div> </div> </div> </div> |