feat(carbone): add carbone integration (#1405)
* feat(carbone): add carbone integration * Update list-apps.spec.js to ensure Carbone is the first application in the alphabetically sorted list Previously, the test expected DeepL to be the first in the list. Now, this change ensures that Carbone will take precedence as it will come first in the alphabetical order.
This commit is contained in:
@@ -54,7 +54,7 @@ test.describe('Apps page', () => {
|
||||
test.setTimeout(60000);
|
||||
|
||||
await applicationsPage.page.getByTestId('app-list-item').first().click();
|
||||
await expect(applicationsPage.page).toHaveURL('/app/deepl/connections/add?shared=false');
|
||||
await expect(applicationsPage.page).toHaveURL('/app/carbone/connections/add?shared=false');
|
||||
await expect(applicationsPage.page.getByTestId('add-app-connection-dialog')).toBeVisible();
|
||||
|
||||
await applicationsPage.clickAway();
|
||||
@@ -64,10 +64,10 @@ test.describe('Apps page', () => {
|
||||
applicationsPage,
|
||||
}) => {
|
||||
await applicationsPage.page.getByTestId('app-list-item').first().click();
|
||||
await expect(applicationsPage.page).toHaveURL('/app/deepl/connections/add?shared=false');
|
||||
await expect(applicationsPage.page).toHaveURL('/app/carbone/connections/add?shared=false');
|
||||
await expect(applicationsPage.page.getByTestId('add-app-connection-dialog')).toBeVisible();
|
||||
await applicationsPage.clickAway();
|
||||
await expect(applicationsPage.page).toHaveURL('/app/deepl/connections');
|
||||
await expect(applicationsPage.page).toHaveURL('/app/carbone/connections');
|
||||
await expect(applicationsPage.page.getByTestId('add-app-connection-dialog')).toBeHidden();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user