Skip to content

Commit

Permalink
remove redundant lines
Browse files Browse the repository at this point in the history
  • Loading branch information
afmicka committed Dec 13, 2024
1 parent 2f7670f commit 47cf36e
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions nala/studio/studio.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ test.describe('M@S Studio feature test suite', () => {
page,
baseURL,
}) => {
const name = `${features[0].name}`;

test.slow();
const { data } = features[0];
const testPage = `${baseURL}${features[0].path}${miloLibs}${features[0].browserParams}${data.cardid}`;
console.info('[Test Page]: ', testPage);
Expand All @@ -57,9 +54,6 @@ test.describe('M@S Studio feature test suite', () => {
page,
baseURL,
}) => {
const name = `${features[0].name}`;

test.slow();
const { data } = features[1];
const testPage = `${baseURL}${features[1].path}${miloLibs}${features[1].browserParams}`;
console.info('[Test Page]: ', testPage);
Expand Down Expand Up @@ -92,9 +86,6 @@ test.describe('M@S Studio feature test suite', () => {
page,
baseURL,
}) => {
const name = `${features[2].name}`;

test.slow();
const { data } = features[2];
const testPage = `${baseURL}${features[2].path}${miloLibs}${features[2].browserParams}${data.cardid}`;
console.info('[Test Page]: ', testPage);
Expand All @@ -109,7 +100,7 @@ test.describe('M@S Studio feature test suite', () => {
await (await studio.getCard(data.cardid, 'suggested')).dblclick();
expect(await studio.editorPanel).toBeVisible;
});
await test.step('step-2: Open card editor', async () => {
await test.step('step-3: Edit title field', async () => {
expect(await studio.editorPanel.title).toBeVisible;
await expect(
await studio.editorPanel.locator(studio.editorTitle),
Expand Down

0 comments on commit 47cf36e

Please sign in to comment.