main

mattermost/focalboard

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

h1.test.tsx.snap

TLDR

The file h1.test.tsx.snap contains Jest snapshots for the h1 component in the blocksEditor module.

Methods

This file does not contain any methods.

Classes

This file does not contain any classes.

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

exports[`components/blocksEditor/blocks/h1 should match Display snapshot 1`] = `
<div>
  <div>
    <h1
      id="test-value"
    >
      test-value
    </h1>
  </div>
</div>
`;

exports[`components/blocksEditor/blocks/h1 should match Input snapshot 1`] = `
<div>
  <input
    class="H1"
    data-testid="h1"
    value="test-value"
  />
</div>
`;