cms/tests/System/integration/administrator/components/com_content/ContentCategoryList.cy.js

13 lines
323 B
JavaScript

// type definitions for Cypress object "cy"
// <reference types="cypress" />
describe('Test com_content Category features', () => {
beforeEach(() => {
cy.doAdministratorLogin(Cypress.env('username'), Cypress.env('password'));
});
it('Category', () => {
cy.createContentCategory('Category title');
});
});