208e88f2cb
Change-Id: Ia5b1cc534daf1124ec5f9cfbe8bbc4f713959582
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import NoApiKeysArea from '@/components/apiKeys/NoApiKeysArea.vue';
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
describe('NoApiKeysArea.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(NoApiKeysArea);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|