Fix lint warnings by switching + to concat()

This commit is contained in:
Tim Donohue
2023-03-03 10:08:50 -06:00
parent d38ba9cf0e
commit 48e95e262d
10 changed files with 16 additions and 16 deletions

View File

@@ -4,7 +4,7 @@ import { testA11y } from 'cypress/support/utils';
describe('Community Page', () => {
it('should pass accessibility tests', () => {
cy.visit('/communities/' + TEST_COMMUNITY);
cy.visit('/communities/'.concat(TEST_COMMUNITY));
// <ds-community-page> tag must be loaded
cy.get('ds-community-page').should('be.visible');