506582e208
Change-Id: Id56425fe38296250e5814a0f02a554cdd73b2330
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();
|
|
});
|
|
});
|