Migrate add and edit incoming webhook components to redux (#6885)
* Migrate add incoming webhook components to redux * Migrate edit incoming webhook components to redux * Add tests
Этот коммит содержится в:
коммит произвёл
George Goldberg
родитель
ff0a790516
Коммит
3043b5d52a
@@ -0,0 +1,26 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`components/integrations/AddIncomingWebhook should match snapshot 1`] = `
|
||||
<AbstractIncomingWebhook
|
||||
action={[Function]}
|
||||
footer={
|
||||
Object {
|
||||
"defaultMessage": "Save",
|
||||
"id": "add_incoming_webhook.save",
|
||||
}
|
||||
}
|
||||
header={
|
||||
Object {
|
||||
"defaultMessage": "Add",
|
||||
"id": "integrations.add",
|
||||
}
|
||||
}
|
||||
serverError=""
|
||||
team={
|
||||
Object {
|
||||
"id": "testteamid",
|
||||
"name": "test",
|
||||
}
|
||||
}
|
||||
/>
|
||||
`;
|
||||
@@ -0,0 +1,7 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`components/integrations/EditIncomingWebhook should match snapshot 1`] = `
|
||||
<LoadingScreen
|
||||
position="relative"
|
||||
/>
|
||||
`;
|
||||
29
webapp/tests/components/integrations/add_incoming_hook.test.jsx
Обычный файл
29
webapp/tests/components/integrations/add_incoming_hook.test.jsx
Обычный файл
@@ -0,0 +1,29 @@
|
||||
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import AddIncomingWebhook from 'components/integrations/components/add_incoming_webhook/add_incoming_webhook.jsx';
|
||||
|
||||
describe('components/integrations/AddIncomingWebhook', () => {
|
||||
test('should match snapshot', () => {
|
||||
function emptyFunction() {} //eslint-disable-line no-empty-function
|
||||
const teamId = 'testteamid';
|
||||
|
||||
const wrapper = shallow(
|
||||
<AddIncomingWebhook
|
||||
team={{
|
||||
id: teamId,
|
||||
name: 'test'
|
||||
}}
|
||||
createIncomingHookRequest={{
|
||||
status: 'not_started',
|
||||
error: null
|
||||
}}
|
||||
actions={{createIncomingHook: emptyFunction}}
|
||||
/>
|
||||
);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
30
webapp/tests/components/integrations/edit_incoming_hook.test.jsx
Обычный файл
30
webapp/tests/components/integrations/edit_incoming_hook.test.jsx
Обычный файл
@@ -0,0 +1,30 @@
|
||||
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import EditIncomingWebhook from 'components/integrations/components/edit_incoming_webhook/edit_incoming_webhook.jsx';
|
||||
|
||||
describe('components/integrations/EditIncomingWebhook', () => {
|
||||
test('should match snapshot', () => {
|
||||
function emptyFunction() {} //eslint-disable-line no-empty-function
|
||||
const teamId = 'testteamid';
|
||||
|
||||
const wrapper = shallow(
|
||||
<EditIncomingWebhook
|
||||
team={{
|
||||
id: teamId,
|
||||
name: 'test'
|
||||
}}
|
||||
hookId={'somehookid'}
|
||||
updateIncomingHookRequest={{
|
||||
status: 'not_started',
|
||||
error: null
|
||||
}}
|
||||
actions={{updateIncomingHook: emptyFunction, getIncomingHook: emptyFunction}}
|
||||
/>
|
||||
);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
Ссылка в новой задаче
Block a user