Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(FE): add global plugin #1106

Merged
merged 22 commits into from
Dec 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions web/config/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ const routes = [
path: '/consumer/:username/edit',
component: './Consumer/Create',
},
{
path: '/plugin/list',
component: './Plugin/List',
},
{
path: '/plugin/market',
component: './Plugin/PluginMarket',
},
{
path: '/service/list',
component: './Service/List',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ context('Create and Delete Consumer', () => {
cy.contains(domSelectors.pluginsCard, 'key-auth').within(() => {
cy.get('button').first().click();
});

cy.get('#disable').click();
// edit codemirror
cy.get('.CodeMirror')
.first()
Expand Down
143 changes: 0 additions & 143 deletions web/src/components/Plugin/CodeMirrorDrawer.tsx

This file was deleted.

Loading