2020-02-24 16:09:27 +00:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import NoApiKeysArea from '@/components/apiKeys/NoApiKeysArea.vue';
|
|
|
|
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
|
2020-06-02 17:38:44 +01:00
|
|
|
describe('NoApiKeysArea.vue', (): void => {
|
2020-02-24 16:09:27 +00:00
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(NoApiKeysArea);
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|