12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`ErrorModal renders 1`] = `
- <CSSTransition
- classNames="fade"
- mountOnEnter={true}
- nodeRef={
- Object {
- "current": null,
- }
- }
- timeout={200}
- unmountOnExit={true}
- >
- <div
- className="background"
- >
- <div
- className="content"
- >
- <p
- className="text"
- >
- Sorry! The server took too long to generate points for that game - your configurations may be too restrictive.
- </p>
- <button
- onClick={[MockFunction]}
- type="button"
- >
- Close
- </button>
- </div>
- </div>
- </CSSTransition>
- `;
- exports[`ErrorModal renders when open 1`] = `
- <CSSTransition
- classNames="fade"
- in={true}
- mountOnEnter={true}
- nodeRef={
- Object {
- "current": null,
- }
- }
- timeout={200}
- unmountOnExit={true}
- >
- <div
- className="background"
- >
- <div
- className="content"
- >
- <p
- className="text"
- >
- Sorry! The server took too long to generate points for that game - your configurations may be too restrictive.
- </p>
- <button
- onClick={[MockFunction]}
- type="button"
- >
- Close
- </button>
- </div>
- </div>
- </CSSTransition>
- `;
|