dd9eaafceb
Change-Id: I8d2bde0a7d2c2778ba3c906232a1a38aaf94cff3
15 lines
393 B
TypeScript
15 lines
393 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', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(NoApiKeysArea);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|