Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
update runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonLaster committed Feb 13, 2017
1 parent 32b5a38 commit da86a22
Showing 1 changed file with 62 additions and 1 deletion.
63 changes: 62 additions & 1 deletion src/test/integration/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,18 @@ const {
breaking,
breakpointsCond,
prettyPrint,
prettyPrintPaused,
keyboardNavigation,
keyboardShortcuts
keyboardShortcuts,
callStack,
debuggerButtons,
iframes,
pauseOnExceptions,
scopes,
sources,
sourceMaps,
sourceMaps2,
sourceMapsBogus
} = require("./tests/index")

window.ok = function ok(expected) {
Expand Down Expand Up @@ -57,6 +67,57 @@ describe("Tests", () => {
xit("keyboard shortcuts", async function() {
await keyboardShortcuts(ctx);
})

xit("callStack", async function() {
await callStack(ctx);
});

it("debuggerButtons", async function() {
await debuggerButtons(ctx);
});

it("iframes", async function() {
await iframes(ctx);
});

// expected 17 to equal 15
xit("pauseOnExceptions", async function() {
await pauseOnExceptions(ctx);
});

it("prettyPrint", async function() {
await prettyPrint(ctx);
});

// timed out
xit("prettyPrintPaused", async function() {
await prettyPrintPaused(ctx);
});

// timed out
xit("scopes", async function() {
await scopes(ctx);
});

// expected 0 to equal 2
xit("sources", async function() {
await sources(ctx);
});

// timed out
xit("sourceMaps", async function() {
await sourceMaps(ctx);
});

it("sourceMaps2", async function() {
await sourceMaps2(ctx);
});

// expected 2 to equal 1
xit("sourceMapsBogus", async function() {
await sourceMapsBogus(ctx);
});

});

mocha.run();

0 comments on commit da86a22

Please sign in to comment.