5e24060b25
tslint has been deprecated so it's nice to switch to eslint. Currently this uses a minimal eslint, to get things up and running. Change-Id: If0ca6413b534b0aa15f6130a0a809e002d817356
21 lines
557 B
TypeScript
21 lines
557 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();
|
|
});
|
|
});
|