Skip to content

Commit 42a7e25

Browse files
committed
[E2E] Fix Eslint issues
1 parent 6e7b695 commit 42a7e25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/regression/monitor/monitor.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ test
5252
//Click on Stop Monitor button
5353
await t.click(monitorPage.runMonitorToggle);
5454
//Check for "Monitor is stopped." text
55-
await t.expect(monitorPage.monitorIsStoppedText.innerText).eql('Profiler is paused.');
55+
await t.expect(monitorPage.monitorIsStoppedText.innerText).eql('Profiler is paused.', 'Paused profiler message');
5656
//Get the last log line
5757
const lastTimestamp = await monitorPage.monitorCommandLineTimestamp.nth(-1).textContent;
5858
//Click on refresh keys to get new logs
5959
await t.click(browserPage.refreshKeysButton);
6060
//Check that no commands are displayed after monitor paused
61-
await t.expect(monitorPage.monitorCommandLineTimestamp.nth(-1).textContent).eql(lastTimestamp);
61+
await t.expect(monitorPage.monitorCommandLineTimestamp.nth(-1).textContent).eql(lastTimestamp, 'The last line of monitor logs');
6262
});
6363
test
6464
.meta({ rte: rte.standalone })('Verify that when user refreshes the page the list of results in Monitor is not saved', async t => {

0 commit comments

Comments
 (0)