Skip to content

Commit

Permalink
Enable locally-passing bundler plugin tests (#16411)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner authored Jan 15, 2025
1 parent a01285f commit 77a5906
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/bundler/bundler_plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ describe("bundler", () => {

// Load Plugin Errors
itBundled("plugin/LoadThrow", {
todo: true,
files: loadFixture,
plugins(builder) {
builder.onLoad({ filter: /\.magic$/ }, args => {
Expand All @@ -99,7 +98,6 @@ describe("bundler", () => {
},
});
itBundled("plugin/LoadThrowAsync", {
todo: true,
files: loadFixture,
plugins(builder) {
builder.onLoad({ filter: /\.magic$/ }, async args => {
Expand All @@ -123,7 +121,6 @@ describe("bundler", () => {
},
});
itBundled("plugin/ResolveAndLoadDefaultExport", {
todo: true,
files: {
"index.ts": /* ts */ `
import foo from "./foo.magic";
Expand Down Expand Up @@ -153,7 +150,6 @@ describe("bundler", () => {

// Load Plugin Errors
itBundled("plugin/ResolveThrow", {
todo: true,
files: resolveFixture,
plugins(builder) {
builder.onResolve({ filter: /\.magic$/ }, args => {
Expand All @@ -177,7 +173,6 @@ describe("bundler", () => {
},
});
itBundled("plugin/ResolveThrowAsync", {
todo: true,
files: resolveFixture,
plugins(builder) {
builder.onResolve({ filter: /\.magic$/ }, async args => {
Expand Down Expand Up @@ -206,7 +201,6 @@ describe("bundler", () => {
let onResolveCount = 0;

return {
todo: true,
files: {
"index.ts": /* ts */ `
import * as foo from "magic:some_string";
Expand Down Expand Up @@ -248,7 +242,6 @@ describe("bundler", () => {
let onResolveCountBad = 0;

return {
todo: true,
files: {
"index.ts": /* ts */ `
import * as foo from "magic:some_string";
Expand Down Expand Up @@ -409,7 +402,6 @@ describe("bundler", () => {
});
itBundled("plugin/ResolveOverrideFile", ({ root }) => {
return {
todo: true,
files: {
"index.ts": /* ts */ `
import * as foo from "./foo.ts";
Expand Down Expand Up @@ -473,7 +465,6 @@ describe("bundler", () => {
let onResolveCount = 0;
let importers: string[] = [];
return {
todo: true,
files: {
"index.ts": /* ts */ `
import * as foo from "./one.ts";
Expand Down

0 comments on commit 77a5906

Please sign in to comment.