blob: 07016cec9a500d45257dbef7c9d6d3ab3255ca9b [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001// Copyright 2021 The Chromium Authors. All rights reserved.
2// 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 () => {
13 render(<IssueWizard />);
14
15 const stepper = document.getElementById("mobile-stepper")
16
17 assert.isNotNull(stepper);
18 });
19});