blob: 4b6e25de4a7f8585ab4dff9327e0057ce10c1471 [file] [log] [blame]
Adrià Vilanova Martínezf19ea432024-01-23 20:20:52 +01001// Copyright 2021 The Chromium Authors
Copybara854996b2021-09-07 19:36:02 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import React from 'react';
6import {assert} from 'chai';
7import {render} from '@testing-library/react';
8
9import {IssueWizard} from './IssueWizard.tsx';
10
11describe('IssueWizard', () => {
12 it('renders', async () => {
Adrià Vilanova Martínezac4a6442022-05-15 19:05:13 +020013 render(<IssueWizard loginUrl="login" userDisplayName="user"/>);
Copybara854996b2021-09-07 19:36:02 +000014
15 const stepper = document.getElementById("mobile-stepper")
16
17 assert.isNotNull(stepper);
18 });
19});