Migrate add and edit outgoing webhook components to redux (#6818)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
6330f7f637
Коммит
0cc60abf6a
@@ -0,0 +1,27 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`components/integrations/AddOutgoingWebhook should match snapshot 1`] = `
|
||||
<AbstractOutgoingWebhook
|
||||
action={[Function]}
|
||||
footer={
|
||||
Object {
|
||||
"defaultMessage": "Save",
|
||||
"id": "add_outgoing_webhook.save",
|
||||
}
|
||||
}
|
||||
header={
|
||||
Object {
|
||||
"defaultMessage": "Add",
|
||||
"id": "integrations.add",
|
||||
}
|
||||
}
|
||||
renderExtra=""
|
||||
serverError=""
|
||||
team={
|
||||
Object {
|
||||
"id": "testteamid",
|
||||
"name": "test",
|
||||
}
|
||||
}
|
||||
/>
|
||||
`;
|
||||
@@ -0,0 +1,7 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`components/integrations/EditOutgoingWebhook should match snapshot 1`] = `
|
||||
<LoadingScreen
|
||||
position="relative"
|
||||
/>
|
||||
`;
|
||||
29
webapp/tests/components/integrations/add_outgoing_hook.test.jsx
Обычный файл
29
webapp/tests/components/integrations/add_outgoing_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 AddOutgoingWebhook from 'components/integrations/components/add_outgoing_webhook/add_outgoing_webhook.jsx';
|
||||
|
||||
describe('components/integrations/AddOutgoingWebhook', () => {
|
||||
test('should match snapshot', () => {
|
||||
function emptyFunction() {} //eslint-disable-line no-empty-function
|
||||
const teamId = 'testteamid';
|
||||
|
||||
const wrapper = shallow(
|
||||
<AddOutgoingWebhook
|
||||
team={{
|
||||
id: teamId,
|
||||
name: 'test'
|
||||
}}
|
||||
createOutgoingHookRequest={{
|
||||
status: 'not_started',
|
||||
error: null
|
||||
}}
|
||||
actions={{createOutgoingHook: emptyFunction}}
|
||||
/>
|
||||
);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
31
webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
Обычный файл
31
webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
Обычный файл
@@ -0,0 +1,31 @@
|
||||
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import EditOutgoingWebhook from 'components/integrations/components/edit_outgoing_webhook/edit_outgoing_webhook.jsx';
|
||||
|
||||
describe('components/integrations/EditOutgoingWebhook', () => {
|
||||
test('should match snapshot', () => {
|
||||
function emptyFunction() {} //eslint-disable-line no-empty-function
|
||||
const teamId = 'testteamid';
|
||||
|
||||
const wrapper = shallow(
|
||||
<EditOutgoingWebhook
|
||||
team={{
|
||||
id: teamId,
|
||||
name: 'test'
|
||||
}}
|
||||
hookId={'somehookid'}
|
||||
updateOutgoingHookRequest={{
|
||||
status: 'not_started',
|
||||
error: null
|
||||
}}
|
||||
actions={{updateOutgoingHook: emptyFunction, getOutgoingHook: emptyFunction}}
|
||||
/>
|
||||
);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
|
||||
Ссылка в новой задаче
Block a user