0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

chore(test): temporarily skip organization console integration tests (#4789)

* chore(test): temporarily skip organization console integration tests

* chore: add comment
This commit is contained in:
Charles Zhao 2023-10-31 00:39:23 +08:00 committed by GitHub
parent 1ab39d19b6
commit fba54f42b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,8 @@ import { cls, dcls, generateTestName } from '#src/utils.js';
const expectOrg = new ExpectOrganizations(await browser.newPage()); const expectOrg = new ExpectOrganizations(await browser.newPage());
describe('organizations: create, edit, and delete organization', () => { // Temporarily skipping organization tests, will add them back later with the "guide" feature
describe.skip('organizations: create, edit, and delete organization', () => {
it('navigates to organizations page', async () => { it('navigates to organizations page', async () => {
await expectOrg.start(); await expectOrg.start();
await expectOrg.gotoPage('/organizations', 'Organizations'); await expectOrg.gotoPage('/organizations', 'Organizations');
@ -46,7 +47,7 @@ describe('organizations: create, edit, and delete organization', () => {
}); });
}); });
describe('organizations: search organization', () => { describe.skip('organizations: search organization', () => {
const [testName1, testName2] = [generateTestName(), generateTestName()]; const [testName1, testName2] = [generateTestName(), generateTestName()];
it('creates two organizations', async () => { it('creates two organizations', async () => {