2020-03-18 17:07:29 +00:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
|
2022-09-08 15:11:09 +01:00
|
|
|
import NoBucketsArea from '@/components/project/buckets/NoBucketsArea.vue';
|
|
|
|
|
2020-03-18 17:07:29 +00:00
|
|
|
const localVue = createLocalVue();
|
|
|
|
|
|
|
|
describe('NoBucketsArea.vue', () => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(NoBucketsArea, {
|
|
|
|
localVue,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|