blob: 07016cec9a500d45257dbef7c9d6d3ab3255ca9b [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import React from 'react';
import {assert} from 'chai';
import {render} from '@testing-library/react';
import {IssueWizard} from './IssueWizard.tsx';
describe('IssueWizard', () => {
it('renders', async () => {
render(<IssueWizard />);
const stepper = document.getElementById("mobile-stepper")
assert.isNotNull(stepper);
});
});