main

mattermost/focalboard

Last updated at: 28/12/2023 01:42

guestBadge.test.tsx.snap

TLDR

This file is a snapshot file generated by Jest for the guestBadge.test.tsx file. It contains the snapshot of the rendered output of the GuestBadge component.

Classes

GuestBadge

The GuestBadge class represents a widget for displaying a "Guest" badge. It has a CSS class of GuestBadge and contains a box element with a CSS class of GuestBadge__box. The text "Guest" is displayed inside the box.

// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`widgets/guestBadge should match the snapshot on show 1`] = `
<div>
  <div
    class="GuestBadge"
  >
    <div
      class="GuestBadge__box"
    >
      Guest
    </div>
  </div>
</div>
`;