123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`HomePage Rejoin handles click 1`] = `
- <ForwardRef>
- <div
- className="rejoinSection"
- >
- <span
- className="rejoinLabel"
- >
- Looks like you were in a game before that you didn't finish!
- </span>
- <DelayedButton
- countDownFormatter={[Function]}
- onEnd={[Function]}
- >
- <CountdownButton
- formatter={[Function]}
- onCancelled={[Function]}
- onEnd={[Function]}
- seconds={3}
- >
- <button
- onClick={[Function]}
- type="button"
- >
- Rejoining in 3s...
- </button>
- </CountdownButton>
- </DelayedButton>
- </div>
- </ForwardRef>
- `;
- exports[`HomePage Rejoin renders 1`] = `
- <div
- className="rejoinSection"
- >
- <span
- className="rejoinLabel"
- >
- Looks like you were in a game before that you didn't finish!
- </span>
- <DelayedButton
- countDownFormatter={[Function]}
- onEnd={[Function]}
- >
- Rejoin Game?
- </DelayedButton>
- </div>
- `;
- exports[`HomePage renders 1`] = `
- <div
- className="page"
- >
- <CSSTransition
- classNames="fade"
- in={false}
- mountOnEnter={true}
- nodeRef={
- Object {
- "current": null,
- }
- }
- timeout={500}
- unmountOnExit={true}
- >
- <ForwardRef />
- </CSSTransition>
- <GameCreationForm
- afterCreate={[Function]}
- />
- </div>
- `;
|