Bug 1605370 - Rewrite ok(message) as ok(true, message) in DevTools tests r=daisuke

Differential Revision: https://phabricator.services.mozilla.com/D57972

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Julian Descottes 2019-12-23 10:37:53 +00:00
parent 65922f5297
commit 243180ebeb
10 changed files with 16 additions and 16 deletions

View File

@ -19,7 +19,7 @@ add_task(async function() {
info("Waiting for the manifest to be displayed");
await waitUntil(() => doc.querySelector(".js-manifest") !== null);
ok("Manifest is being displayed");
ok(true, "Manifest is being displayed");
// assert manifest members are being properly displayed
checkManifestMember(doc, "name", "Foo");
@ -49,7 +49,7 @@ add_task(async function() {
info("Waiting for the manifest to be displayed");
await waitUntil(() => doc.querySelector(".js-manifest") !== null);
ok("Manifest is being displayed");
ok(true, "Manifest is being displayed");
// assert manifest members are being properly displayed
checkManifestMember(doc, "name", "Foo");
@ -80,7 +80,7 @@ add_task(async function() {
info("Waiting for the manifest to be displayed");
await waitUntil(() => doc.querySelector(".js-manifest") !== null);
ok("Manifest is being displayed");
ok(true, "Manifest is being displayed");
const issuesEl = doc.querySelector(".js-manifest-issues");
ok(issuesEl !== null, "Validation issues are displayed");

View File

@ -12,5 +12,5 @@ add_task(async function() {
await waitForSources(dbg, "doc-bfcache1.html");
invokeInTab("goForward");
await waitForSources(dbg, "doc-bfcache2.html");
ok("Found sources after BFCache navigations");
ok(true, "Found sources after BFCache navigations");
});

View File

@ -14,5 +14,5 @@ add_task(async function() {
toolbox.target.navigateTo({ url: "doc-debugger-statements.html" });
await hasConsoleMessage({ toolbox }, 'done!')
ok('We reached the end');
ok(true, 'We reached the end');
});

View File

@ -19,7 +19,7 @@ add_task(async function() {
selectContextMenuItem(dbg, selectors.breakpointContextMenu.remove);
await waitForState(dbg, state => dbg.selectors.getBreakpointCount() === 0);
ok("successfully removed the breakpoint");
ok(true, "successfully removed the breakpoint");
});
// Tests "disable others", "enable others" and "remove others" context actions
@ -47,7 +47,7 @@ add_task(async function() {
.every(bp => (bp.location.line !== 4) === bp.disabled)
);
await dispatched;
ok("breakpoint at 4 is the only enabled breakpoint");
ok(true, "breakpoint at 4 is the only enabled breakpoint");
openFirstBreakpointContextMenu(dbg);
// select "Disable All"
@ -57,7 +57,7 @@ add_task(async function() {
dbg.selectors.getBreakpointsList().every(bp => bp.disabled)
);
await dispatched;
ok("all breakpoints are disabled");
ok(true, "all breakpoints are disabled");
openFirstBreakpointContextMenu(dbg);
// select "Enable Others"
@ -69,7 +69,7 @@ add_task(async function() {
.every(bp => (bp.location.line === 4) === bp.disabled)
);
await dispatched;
ok("all breakpoints except line 1 are enabled");
ok(true, "all breakpoints except line 1 are enabled");
openFirstBreakpointContextMenu(dbg);
// select "Remove Others"
@ -82,5 +82,5 @@ add_task(async function() {
dbg.selectors.getBreakpointsList()[0].location.line === 4
);
await dispatched;
ok("remaining breakpoint should be on line 4");
ok(true, "remaining breakpoint should be on line 4");
});

View File

@ -37,5 +37,5 @@ add_task(async function() {
await waitForPaused(dbg);
await waitUntil(() => findNode(dbg, "innerData"));
ok("Inner object data automatically expanded after stepping");
ok(true, "Inner object data automatically expanded after stepping");
});

View File

@ -57,7 +57,7 @@ async function testToolboxInitialization(testActor, tab) {
info("Destroying toolbox");
await toolbox.destroy();
ok("true", "'destroyed' notification received.");
ok(true, "'destroyed' notification received.");
ok(!gDevTools.getToolbox(target), "Toolbox destroyed.");
}

View File

@ -41,7 +41,7 @@ async function testToolboxInitialization(tab, inspector, toolbox) {
info("Destroying toolbox.");
await toolbox.destroy();
ok("true", "'destroyed' notification received.");
ok(true, "'destroyed' notification received.");
ok(!gDevTools.getToolbox(target), "Toolbox destroyed.");
}

View File

@ -40,7 +40,7 @@ add_task(async function() {
);
await waitUntil(() => recording.getMarkers().length > markersLength);
ok("Markers continue after reload.");
ok(true, "Markers continue after reload.");
await stopRecording(panel);
await teardownToolboxAndRemoveTab(panel);

View File

@ -41,7 +41,7 @@ add_task(async function() {
await toggleLayout(hud);
getInlineOpenEditorButton(hud).click();
await waitFor(() => isEditorModeEnabled(hud));
ok("Editor is open when clicking on the button");
ok(true, "Editor is open when clicking on the button");
});
function getInlineOpenEditorButton(hud) {

View File

@ -18,7 +18,7 @@ add_task(async function() {
await closeTabAndToolbox(gBrowser.selectedTab);
await waitFor(() => destroyed);
ok("We received both created and destroyed events");
ok(true, "We received both created and destroyed events");
});
function setupObserver() {