e0f3166343
WHAT: unit tests for vue components and vuex store and environment for it WHY: to cover frontend part with tests Change-Id: I2aeaadb200176d4ba0a1406068304785e95d92cd
21 lines
558 B
TypeScript
21 lines
558 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import NodeOptions from '@/app/components/common/NodeOptions.vue';
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
describe('NodeOptions', (): void => {
|
|
it('renders correctly', async (): Promise<void> => {
|
|
const wrapper = shallowMount(NodeOptions, {
|
|
propsData: { id: 'id' },
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
await wrapper.find('.options-button').trigger('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|