c921710247
WHAT: modal with saving API key confirmation implemented for onboarding tour WHY: ensure user saved API key Change-Id: I9bc000cf5a19a9d6fc9eb3a4bfb9156d6b4bc78f
15 lines
394 B
TypeScript
15 lines
394 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import SaveApiKeyModal from '@/components/onboardingTour/steps/SaveApiKeyModal.vue';
|
|
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
describe('SaveApiKeyModal.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = mount(SaveApiKeyModal);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|