Skip to content

Commit

Permalink
Tests: remove focus
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed May 11, 2021
1 parent 096ee66 commit 1eacfc9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions test/runify.js
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ hosts.forEach(function (record) {
`);
});

fit("can set globals in new realms", async () => {
it("can set globals in new realms", async () => {
if (["hermes", "xs"].includes(type)) {
return;
}
Expand All @@ -619,7 +619,7 @@ hosts.forEach(function (record) {
`);
});

fit("can eval in new scripts", async () => {
it("can eval in new scripts", async () => {
if (["hermes", "xs"].includes(type)) {
return;
}
Expand All @@ -639,7 +639,7 @@ hosts.forEach(function (record) {
`);
});

fit("returns errors from evaling in new script", async () => {
it("returns errors from evaling in new script", async () => {
if (["hermes", "engine262"].includes(type)) {
return;
}
Expand All @@ -654,7 +654,7 @@ hosts.forEach(function (record) {
).toBeTruthy();
});

fit("can eval lexical bindings in new scripts", async () => {
it("can eval lexical bindings in new scripts", async () => {
if (["hermes"].includes(type)) {
return;
}
Expand All @@ -674,7 +674,7 @@ hosts.forEach(function (record) {
`);
});

fit("can set properties in new realms", async () => {
it("can set properties in new realms", async () => {
if (["hermes"].includes(type)) {
return;
}
Expand All @@ -697,7 +697,7 @@ hosts.forEach(function (record) {
`);
});

fit("can access properties from new realms", async () => {
it("can access properties from new realms", async () => {
if (["hermes"].includes(type)) {
return;
}
Expand All @@ -717,7 +717,7 @@ hosts.forEach(function (record) {
`);
});

fit("runs async code", async () => {
it("runs async code", async () => {
const result = await agent.evalScript(
stripIndent`
if ($262.global.Promise === undefined) {
Expand All @@ -743,7 +743,7 @@ hosts.forEach(function (record) {
`);
});

fit("accepts destroy callbacks", async () => {
it("accepts destroy callbacks", async () => {
if (["hermes", "xs"].includes(type)) {
return;
}
Expand All @@ -762,7 +762,7 @@ hosts.forEach(function (record) {
`);
});

fit("supports realm nesting", async () => {
it("supports realm nesting", async () => {
if (["hermes", "xs"].includes(type)) {
return;
}
Expand Down Expand Up @@ -849,7 +849,7 @@ hosts.forEach(function (record) {
}
});

fit("Can evaluate module code", async () => {
it("Can evaluate module code", async () => {
return Promise.all(
records.map(async (record) => {
let options = record.attrs.flags;
Expand Down

0 comments on commit 1eacfc9

Please sign in to comment.