We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f7b8b commit fa103eeCopy full SHA for fa103ee
tests/System/integration/api/com_installer/Request.cy.js
@@ -0,0 +1,8 @@
1
+describe('Test that installer API endpoint', () => {
2
+ it('can deliver a list of extensions', () => {
3
+ cy.api_get('/extensions')
4
+ .then((response) => cy.wrap(response).its('body').its('data.0').its('attributes')
5
+ .its('name')
6
+ .should('include', 'Action Log - Joomla'));
7
+ });
8
+});
0 commit comments