a342edd1c2
Fixed web linter Issue: https://github.com/storj/storj/issues/5158 Change-Id: Ibc0b8e9f241e77e833645d9fa114bf5742c9f81c
24 lines
632 B
TypeScript
24 lines
632 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
import NodeOptions from '@/app/components/common/NodeOptions.vue';
|
|
|
|
describe('NodeOptions', (): void => {
|
|
it('renders correctly', async(): Promise<void> => {
|
|
const wrapper = shallowMount(NodeOptions, {
|
|
propsData: { id: 'id' },
|
|
directives: {
|
|
clickOutside: {},
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
await wrapper.find('.options-button').trigger('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|