19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
|
// Copyright (C) 2020 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
import NoBucketsArea from '@/components/project/buckets/NoBucketsArea.vue';
|
||
|
|
||
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
||
|
|
||
|
const localVue = createLocalVue();
|
||
|
|
||
|
describe('NoBucketsArea.vue', () => {
|
||
|
it('renders correctly', (): void => {
|
||
|
const wrapper = shallowMount(NoBucketsArea, {
|
||
|
localVue,
|
||
|
});
|
||
|
|
||
|
expect(wrapper).toMatchSnapshot();
|
||
|
});
|
||
|
});
|