18874: Add 'services/workbench2/' from commit 'f6f88d9ca9cdeeeebfadcfe999789bfb9f69e5c6'
[arvados.git] / services / workbench2 / src / views / inactive-panel / static / git-favicon.png
diff --git a/src/views/inactive-panel/inactive-panel.test.tsx b/src/views/inactive-panel/inactive-panel.test.tsx
deleted file mode 100644 (file)
index c694f9d..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
-
-import React from 'react';
-import { mount, configure } from 'enzyme';
-import Adapter from "enzyme-adapter-react-16";
-import { CustomTheme } from 'common/custom-theme';
-import { InactivePanelStateProps, CssRules, InactivePanelRoot } from './inactive-panel';
-import { MuiThemeProvider, StyledComponentProps } from '@material-ui/core';
-
-configure({ adapter: new Adapter() });
-
-describe('InactivePanel', () => {
-    let props: InactivePanelStateProps & StyledComponentProps<CssRules>;
-
-    beforeEach(() => {
-        props = {
-            classes: {
-                root: 'root',
-                title: 'title',
-                ontop: 'ontop',
-            },
-            isLoginClusterFederation: false,
-            inactivePageText: 'Inactive page content',
-        };
-    });
-
-    it('should render content and link account option', () => {
-        // given
-        const expectedMessage = "Inactive page content";
-        const expectedLinkAccountText = 'If you would like to use this login to access another account click "Link Account"';
-
-        // when
-        const wrapper = mount(
-            <MuiThemeProvider theme={CustomTheme}>
-                <InactivePanelRoot {...props} />
-            </MuiThemeProvider>
-            );
-
-        // then
-        expect(wrapper.find('p').first().text()).toContain(expectedMessage);
-        expect(wrapper.find('p').at(1).text()).toContain(expectedLinkAccountText);
-    })
-
-    it('should render content and link account warning on LoginCluster federations', () => {
-        // given
-        props.isLoginClusterFederation = true;
-        const expectedMessage = "Inactive page content";
-        const expectedLinkAccountText = 'If you would like to use this login to access another account, please contact your administrator';
-
-        // when
-        const wrapper = mount(
-            <MuiThemeProvider theme={CustomTheme}>
-                <InactivePanelRoot {...props} />
-            </MuiThemeProvider>
-            );
-
-        // then
-        expect(wrapper.find('p').first().text()).toContain(expectedMessage);
-        expect(wrapper.find('p').at(1).text()).toContain(expectedLinkAccountText);
-    })
-});
\ No newline at end of file