Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame^] | 1 | // 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 | |
| 5 | import React from 'react'; |
| 6 | import {assert} from 'chai'; |
| 7 | import {render} from '@testing-library/react'; |
| 8 | |
| 9 | import {IssueWizard} from './IssueWizard.tsx'; |
| 10 | |
| 11 | describe('IssueWizard', () => { |
| 12 | it('renders', async () => { |
| 13 | render(<IssueWizard />); |
| 14 | |
| 15 | const stepper = document.getElementById("mobile-stepper") |
| 16 | |
| 17 | assert.isNotNull(stepper); |
| 18 | }); |
| 19 | }); |