Skip to content

Commit

Permalink
Remove .only from cy component tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed May 29, 2024
1 parent ca96800 commit 7c34fb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/component/GatewayErrors.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ describe('Gateway errors', () => {
removeScalprum();
});

it.only('handles 403 3scale gateway error', () => {
it('handles 403 3scale gateway error', () => {
const code = 'gateway-403';
const TestComponent = () => {
useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/component/OIDCConnector/OIDCSecured.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ describe('ODIC Secured', () => {
cy.contains(CHILD_TEXT).should('exist');
});

it.only('Chrome auth context methods should be initialized and called on click', () => {
it('Chrome auth context methods should be initialized and called on click', () => {
cy.mount(
<AuthContext.Provider value={authContextValue}>
<Wrapper store={store}>
Expand Down
2 changes: 1 addition & 1 deletion cypress/component/helptopics/HelpTopicManager.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('HelpTopicManager', () => {
cy.intercept('http://localhost:8080/api/chrome-service/v1/static/stable/stage/search/search-index.json', []);
});

it.only('should switch help topics drawer content', () => {
it('should switch help topics drawer content', () => {
// change screen size
cy.viewport(1280, 720);
cy.window().then((win) => {
Expand Down

0 comments on commit 7c34fb4

Please sign in to comment.