storj/web/satellite/tests/unit/project/buckets/NoBucketsArea.spec.ts
Vitalii c5bca894fd web/satellite: fix linter
Added imports linting, trailing commas, trailing semicolons, single quotes and spaces between curly braces.

Change-Id: I5de5d3eea48753dfe2737983b230bafaffe898c8
2022-09-09 11:02:04 +00:00

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