blob: 4b6e25de4a7f8585ab4dff9327e0057ce10c1471 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// 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 loginUrl="login" userDisplayName="user"/>);
const stepper = document.getElementById("mobile-stepper")
assert.isNotNull(stepper);
});
});