SymphonyElectron/spec/__snapshots__/welcome.spec.ts.snap
Vishwas Shashidhar a240621a17
feat: SDA-1983: implement simplified installer window on SDA (#977)
* SDA-1983: create the new welcome window

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: add logic to validate pod url and open welcome page on startup conditionally

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: add unit tests and finish the full logic implementation

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: minor fixes

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: fix sso double slash

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: fix deleting url from global config object

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: simplify setting user config

Co-Authored-By: Kiran Niranjan <kiranleo1992@gmail.com>

* SDA-1983: delete unused variable

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

* SDA-1983: add japanese and french translations

Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>

Co-authored-by: Kiran Niranjan <kiranleo1992@gmail.com>
2020-04-27 15:05:25 +05:30

64 lines
1.2 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`welcome should render correctly 1`] = `
<div
className="Welcome"
lang="en-US"
>
<div
className="Welcome-image-container"
>
<img
alt="Symphony Logo"
src="../renderer/assets/symphony-logo-plain.png"
/>
</div>
<div
className="Welcome-main-container"
>
<h3
className="Welcome-name"
>
Pod URL
</h3>
<div
className="Welcome-main-container-input-div"
>
<div
className="Welcome-main-container-input-selection"
>
<input
className="Welcome-main-container-podurl-box"
onChange={[Function]}
type="url"
value="https://my.symphony.com"
/>
</div>
<div
className="Welcome-main-container-sso-box"
title="Enable Single Sign On"
>
<label>
<input
checked={false}
onChange={[Function]}
type="checkbox"
/>
SSO
</label>
</div>
</div>
<label
className="Welcome-message-label"
/>
<button
className="Welcome-continue-button"
disabled={false}
onClick={[Function]}
>
Continue
</button>
</div>
</div>
`;