c5bca894fd
Added imports linting, trailing commas, trailing semicolons, single quotes and spaces between curly braces. Change-Id: I5de5d3eea48753dfe2737983b230bafaffe898c8
19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import NoBucketsArea from '@/components/project/buckets/NoBucketsArea.vue';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
describe('NoBucketsArea.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(NoBucketsArea, {
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|