This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert enzyme to rtl: BeaconStatus (#9836)
* rewrite in rtl * update snapshots
- Loading branch information
1 parent
100b1d5
commit 2e097a0
Showing
2 changed files
with
54 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
171 changes: 35 additions & 136 deletions
171
test/components/views/beacon/__snapshots__/BeaconStatus-test.tsx.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,178 +1,77 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`<BeaconStatus /> active state renders with children 1`] = `null`; | ||
exports[`<BeaconStatus /> active state renders with children 1`] = ` | ||
<span | ||
data-testid="test-child" | ||
> | ||
test | ||
</span> | ||
`; | ||
|
||
exports[`<BeaconStatus /> active state renders without children 1`] = ` | ||
<BeaconStatus | ||
beacon={ | ||
Beacon { | ||
"_beaconInfo": { | ||
"assetType": "m.self", | ||
"description": undefined, | ||
"live": false, | ||
"timeout": 3600000, | ||
"timestamp": 123456789, | ||
}, | ||
"_events": {}, | ||
"_eventsCount": 0, | ||
"_isLive": false, | ||
"_latestLocationEvent": undefined, | ||
"_maxListeners": undefined, | ||
"clearLatestLocation": [Function], | ||
"livenessWatchTimeout": undefined, | ||
"roomId": "!room:server", | ||
"rootEvent": { | ||
"content": { | ||
"description": undefined, | ||
"live": false, | ||
"org.matrix.msc3488.asset": { | ||
"type": "m.self", | ||
}, | ||
"org.matrix.msc3488.ts": 123456789, | ||
"timeout": 3600000, | ||
}, | ||
"event_id": "$1", | ||
"origin_server_ts": 123456789, | ||
"room_id": "!room:server", | ||
"sender": "@user:server", | ||
"state_key": "@user:server", | ||
"type": "org.matrix.msc3672.beacon_info", | ||
}, | ||
Symbol(kCapture): false, | ||
} | ||
} | ||
displayStatus="Active" | ||
label="test label" | ||
withIcon={true} | ||
> | ||
<DocumentFragment> | ||
<div | ||
className="mx_BeaconStatus mx_BeaconStatus_Active" | ||
class="mx_BeaconStatus mx_BeaconStatus_Active" | ||
> | ||
<StyledLiveBeaconIcon | ||
className="mx_BeaconStatus_icon" | ||
isIdle={false} | ||
withError={false} | ||
> | ||
<div | ||
className="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon" | ||
/> | ||
</StyledLiveBeaconIcon> | ||
<div | ||
className="mx_BeaconStatus_description" | ||
class="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon" | ||
/> | ||
<div | ||
class="mx_BeaconStatus_description" | ||
> | ||
<span | ||
className="mx_BeaconStatus_label" | ||
class="mx_BeaconStatus_label" | ||
> | ||
test label | ||
</span> | ||
<BeaconExpiryTime | ||
beacon={ | ||
Beacon { | ||
"_beaconInfo": { | ||
"assetType": "m.self", | ||
"description": undefined, | ||
"live": false, | ||
"timeout": 3600000, | ||
"timestamp": 123456789, | ||
}, | ||
"_events": {}, | ||
"_eventsCount": 0, | ||
"_isLive": false, | ||
"_latestLocationEvent": undefined, | ||
"_maxListeners": undefined, | ||
"clearLatestLocation": [Function], | ||
"livenessWatchTimeout": undefined, | ||
"roomId": "!room:server", | ||
"rootEvent": { | ||
"content": { | ||
"description": undefined, | ||
"live": false, | ||
"org.matrix.msc3488.asset": { | ||
"type": "m.self", | ||
}, | ||
"org.matrix.msc3488.ts": 123456789, | ||
"timeout": 3600000, | ||
}, | ||
"event_id": "$1", | ||
"origin_server_ts": 123456789, | ||
"room_id": "!room:server", | ||
"sender": "@user:server", | ||
"state_key": "@user:server", | ||
"type": "org.matrix.msc3672.beacon_info", | ||
}, | ||
Symbol(kCapture): false, | ||
} | ||
} | ||
<span | ||
class="mx_BeaconStatus_expiryTime" | ||
> | ||
<span | ||
className="mx_BeaconStatus_expiryTime" | ||
> | ||
Live until 11:17 | ||
</span> | ||
</BeaconExpiryTime> | ||
Live until 11:17 | ||
</span> | ||
</div> | ||
</div> | ||
</BeaconStatus> | ||
</DocumentFragment> | ||
`; | ||
|
||
exports[`<BeaconStatus /> renders loading state 1`] = ` | ||
<BeaconStatus | ||
displayStatus="Loading" | ||
label="test label" | ||
withIcon={true} | ||
> | ||
<DocumentFragment> | ||
<div | ||
className="mx_BeaconStatus mx_BeaconStatus_Loading" | ||
class="mx_BeaconStatus mx_BeaconStatus_Loading" | ||
> | ||
<StyledLiveBeaconIcon | ||
className="mx_BeaconStatus_icon" | ||
isIdle={true} | ||
withError={false} | ||
> | ||
<div | ||
className="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon mx_StyledLiveBeaconIcon_idle" | ||
/> | ||
</StyledLiveBeaconIcon> | ||
<div | ||
className="mx_BeaconStatus_description" | ||
class="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon mx_StyledLiveBeaconIcon_idle" | ||
/> | ||
<div | ||
class="mx_BeaconStatus_description" | ||
> | ||
<span | ||
className="mx_BeaconStatus_description_status" | ||
class="mx_BeaconStatus_description_status" | ||
> | ||
Loading live location... | ||
</span> | ||
</div> | ||
</div> | ||
</BeaconStatus> | ||
</DocumentFragment> | ||
`; | ||
|
||
exports[`<BeaconStatus /> renders stopped state 1`] = ` | ||
<BeaconStatus | ||
displayStatus="Stopped" | ||
label="test label" | ||
withIcon={true} | ||
> | ||
<DocumentFragment> | ||
<div | ||
className="mx_BeaconStatus mx_BeaconStatus_Stopped" | ||
class="mx_BeaconStatus mx_BeaconStatus_Stopped" | ||
> | ||
<StyledLiveBeaconIcon | ||
className="mx_BeaconStatus_icon" | ||
isIdle={true} | ||
withError={false} | ||
> | ||
<div | ||
className="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon mx_StyledLiveBeaconIcon_idle" | ||
/> | ||
</StyledLiveBeaconIcon> | ||
<div | ||
className="mx_BeaconStatus_description" | ||
class="mx_StyledLiveBeaconIcon mx_BeaconStatus_icon mx_StyledLiveBeaconIcon_idle" | ||
/> | ||
<div | ||
class="mx_BeaconStatus_description" | ||
> | ||
<span | ||
className="mx_BeaconStatus_description_status" | ||
class="mx_BeaconStatus_description_status" | ||
> | ||
Live location ended | ||
</span> | ||
</div> | ||
</div> | ||
</BeaconStatus> | ||
</DocumentFragment> | ||
`; |