Remove duplicate schedule tab

This commit is contained in:
Jake McDermott 2020-03-09 12:40:29 -04:00
parent 9a394a5726
commit 24d35e9593
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F
2 changed files with 1 additions and 5 deletions

View File

@ -126,10 +126,6 @@ class Template extends Component {
}
tabsArray.push(
{
name: i18n._(t`Schedules`),
link: `${match.url}/schedules`,
},
{
name: i18n._(t`Completed Jobs`),
link: `${match.url}/completed_jobs`,

View File

@ -62,7 +62,7 @@ describe('<Template />', () => {
const tabs = await waitForElement(
wrapper,
'.pf-c-tabs__item',
el => el.length === 7
el => el.length === 6
);
expect(tabs.at(2).text()).toEqual('Notifications');
done();