storj/web/satellite/tests/unit/project/buckets/NoBucketsArea.spec.ts

19 lines
482 B
TypeScript
Raw Normal View History

// 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();
});
});