storj/web/satellite/tests/unit/onboardingTour/steps/SaveApiKeyModal.spec.ts
VitaliiShpital c921710247 web/satellite: confirm saving API key modal implemented
WHAT:
modal with saving API key confirmation implemented for onboarding tour

WHY:
ensure user saved API key

Change-Id: I9bc000cf5a19a9d6fc9eb3a4bfb9156d6b4bc78f
2020-08-11 13:19:01 +00:00

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();
});
});