Skip to content

Commit

Permalink
comment out notif checks in test
Browse files Browse the repository at this point in the history
  • Loading branch information
tzAcee committed Mar 24, 2024
1 parent bbcf2ff commit 9f4ca04
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/ui-test/utils/class-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export class ClassHelper

static async fileExistsGetContent(path: string, className: string)
{
const pathWithoutFileName = path.substring(0, path.lastIndexOf("/"));
/*const pathWithoutFileName = path.substring(0, path.lastIndexOf("/"));
const expNotif = `Your class "${className}" has been created! (@${pathWithoutFileName})`;
assert(await VSController.isNotificationSent(expNotif));
assert(await VSController.isNotificationSent(expNotif));*/

assert(await this.fileExists(path));

Expand All @@ -40,9 +40,9 @@ export class ClassHelper
{
assert(content != "");

const pathWithoutFileName = path.substring(0, path.lastIndexOf("/"));
/* const pathWithoutFileName = path.substring(0, path.lastIndexOf("/"));
const expNotif = `Your class "${className}" has been created! (@${pathWithoutFileName})`;
assert(await VSController.isNotificationSent(expNotif));
assert(await VSController.isNotificationSent(expNotif));*/

assert(await this.fileExists(path));

Expand Down

0 comments on commit 9f4ca04

Please sign in to comment.