Newenglanddc Alternative

Newenglanddc Alternative

import { render, screen } from '@testing-library/react'

XLinkedInEmail
Cityscape featuring unique industrial vent structures against apartment buildings.
Photo: Plato Terentev / Pexels
```jsx

import React from 'react'

import { render, screen } from '@testing-library/react'

import userEvent from '@testing-library/user-event'

import Example from './Example'

// Replace to match the story you are testing

const ExampleStory = () =>

describe('Example', () => {

describe('renders content', () => {

it('renders a heading', () => {

render()

const heading = screen.getByRole('heading', { name: /example/i })

expect(heading).toBeInTheDocument()

})

it('renders children', () => {

render()

const children = screen.getAllByText(/children/i)

expect(children).toBeInTheDocument()

}) })

describe('interacts with content', () => {

it('clicks button', async () => {

render()

const button = screen.getByRole('button', { name: /click me/i })

await userEvent.click(button)

expect(button).toBeDisabled()

}) }) })

Dive Deeper Into This Topic

Continue building your understanding with these articles

Humidity, Mold, and Your Ductwork: A New England Summer Problem
Indoor Air Quality

Humidity, Mold, and Your Ductwork: A New England Summer Problem

· 5 min read
Why Your Summer Allergies Might Be Coming From Inside Your House
Indoor Air Quality

Why Your Summer Allergies Might Be Coming From Inside Your House

· 6 min read
Why Summer Is the Smartest Time for Commercial Spaces to Clean Their Ducts
Commercial

Why Summer Is the Smartest Time for Commercial Spaces to Clean Their Ducts

· 5 min read