SymphonyElectron/spec/__snapshots__/moreInfo.spec.ts.snap
Vishwas Shashidhar 11f69f47ac
feat: ELECTRON-1357: show version info from pod (#703)
* ELECTRON-1357: implement getting dynamic version

* ELECTRON-1357: add support for more info window

* ELECTRON-1357: add unit tests for version handler

* ELECTRON-1357: delete unwanted files

* Delete .gulp-tsc-tmp-11966-41547-768xt5.masn2.ts

* Delete .gulp-tsc-tmp-11966-10574-1bhy8kw.k21y.ts

* ELECTRON-1357: caching server data

* ELECTRON-1357: refactor code to remove event emitter and use net module

* ELECTRON-1357: set version info asynchronously

* ELECTRON-1357: add checks for failed requests
2019-07-08 20:35:57 +05:30

159 lines
2.2 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`more info should render correctly 1`] = `
<div
className="MoreInfo"
>
<span>
<b>
Version Information
</b>
</span>
<div
className="content"
>
<h4>
Symphony
</h4>
<table>
<tbody>
<tr>
<th>
Pod Version
</th>
<th>
SDA Version
</th>
</tr>
<tr>
<td>
N/A (N/A)
</td>
<td>
N/A (N/A)
</td>
</tr>
</tbody>
</table>
</div>
<div
className="content"
>
<h4>
Electron
</h4>
<span
className="MoreInfo-electron"
>
N/A
</span>
</div>
<div
className="content"
>
<h4>
v8
related
</h4>
<table>
<tbody>
<tr>
<th>
Chrome
</th>
<th>
v8
</th>
<th>
Node
</th>
</tr>
<tr>
<td>
N/A
</td>
<td>
N/A
</td>
<td>
N/A
</td>
</tr>
</tbody>
</table>
</div>
<div
className="content"
>
<h4>
Others
</h4>
<table>
<tbody>
<tr>
<th>
openssl
</th>
<th>
zlib
</th>
<th>
uv
</th>
<th>
ares
</th>
<th>
http_parser
</th>
</tr>
<tr>
<td>
N/A
</td>
<td>
N/A
</td>
<td>
N/A
</td>
<td>
N/A
</td>
<td>
N/A
</td>
</tr>
</tbody>
</table>
</div>
<div
className="content"
>
<h4>
Swift Search
</h4>
<table>
<tbody>
<tr>
<th>
Swift Search Version
</th>
<th>
API Version
</th>
</tr>
<tr>
<td>
N/A
</td>
<td>
N/A
</td>
</tr>
</tbody>
</table>
</div>
</div>
`;