Skip to content

Commit

Permalink
tests: exclude browser runs from shortName and transform
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed May 11, 2021
1 parent f178c8a commit f638045
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/runify.js
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ hosts.forEach(function (record) {
});

describe('"shortName" option', () => {
if (["hermes", "engine262"].includes(type)) {
if (["hermes", "engine262", "firefox", "chrome", "remote"].includes(type)) {
return;
}
it("allows custom shortNames", async () => {
Expand All @@ -918,6 +918,9 @@ hosts.forEach(function (record) {
});

describe('"transform" option', () => {
if (["firefox", "chrome", "remote"].includes(type)) {
return;
}
it("runs transforms", async () => {
const agent = await eshost.createAgent(type, {
...options,
Expand Down

0 comments on commit f638045

Please sign in to comment.