Skip to content

Commit b02f182

Browse files
fix(cypress) Skip summaryTab.js while we fix it (#15135)
1 parent eeb2c88 commit b02f182

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

smoke-test/tests/cypress/cypress/e2e/summaryTab/summaryTab.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,18 @@ describe("summary tab - domain", () => {
142142
utils.deleteDomain(cleanupData.domainName);
143143
});
144144

145-
it("domain - header section", () => {
145+
it.skip("domain - header section", () => {
146146
testPropertiesSection([
147147
{ name: "Created", type: "CREATED" },
148148
{ name: "Owners", type: "OWNERS", value: USER_DISPLAY_NAME },
149149
]);
150150
});
151151

152-
it("domain - description section", () => {
152+
it.skip("domain - description section", () => {
153153
testAboutSection();
154154
});
155155

156-
it("domain - modules section", () => {
156+
it.skip("domain - modules section", () => {
157157
const defaultModules = [
158158
{
159159
type: "assets",
@@ -201,18 +201,18 @@ describe("summary tab - glossary node", () => {
201201
utils.deleteOpenedGLossaryTerm();
202202
});
203203

204-
it("glossary node - header section", () => {
204+
it.skip("glossary node - header section", () => {
205205
testPropertiesSection([
206206
{ name: "Created", type: "CREATED" },
207207
{ name: "Owners", type: "OWNERS", value: USER_DISPLAY_NAME },
208208
]);
209209
});
210210

211-
it("glossary node - description section", () => {
211+
it.skip("glossary node - description section", () => {
212212
testAboutSection();
213213
});
214214

215-
it("glossary node - modules section", () => {
215+
it.skip("glossary node - modules section", () => {
216216
const defaultModules = [
217217
{
218218
type: "hierarchy",
@@ -250,19 +250,19 @@ describe("summary tab - glossary term", () => {
250250
utils.deleteOpenedGlossaryNode();
251251
});
252252

253-
it("glossary term - header section", () => {
253+
it.skip("glossary term - header section", () => {
254254
testPropertiesSection([
255255
{ name: "Created", type: "CREATED" },
256256
{ name: "Owners", type: "OWNERS", value: USER_DISPLAY_NAME },
257257
{ name: "Domain", type: "DOMAIN", value: TEST_DOMAIN },
258258
]);
259259
});
260260

261-
it("glossary term - description section", () => {
261+
it.skip("glossary term - description section", () => {
262262
testAboutSection();
263263
});
264264

265-
it("glossary term - modules section", () => {
265+
it.skip("glossary term - modules section", () => {
266266
const defaultModules = [
267267
{
268268
type: "assets",
@@ -299,7 +299,7 @@ describe("summary tab - data product", () => {
299299
utils.deleteOpenedDataProduct();
300300
});
301301

302-
it("data product - header section", () => {
302+
it.skip("data product - header section", () => {
303303
testPropertiesSection([
304304
{ name: "Created", type: "CREATED" },
305305
{ name: "Owners", type: "OWNERS", value: USER_DISPLAY_NAME },
@@ -309,11 +309,11 @@ describe("summary tab - data product", () => {
309309
]);
310310
});
311311

312-
it("data product - description section", () => {
312+
it.skip("data product - description section", () => {
313313
testAboutSection();
314314
});
315315

316-
it("data product - modules section", () => {
316+
it.skip("data product - modules section", () => {
317317
const defaultModules = [
318318
{
319319
type: "assets",

0 commit comments

Comments
 (0)