Skip to content

Commit

Permalink
Skip an MSBuild e2e test in ADO (#15501)
Browse files Browse the repository at this point in the history
Forgot to do this when submitting my Jest -> Vitest migration PR. This
fixes a failure in official build.
###### Microsoft Reviewers: [Open in
CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/Azure/bicep/pull/15501)
  • Loading branch information
shenglol authored Nov 4, 2024
1 parent b31dd99 commit ec82b47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Bicep.MSBuild.E2eTests/src/simpleMultiTargeting.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import { describe, expect, it } from "vitest";
import { Example } from "./example";

describe("msbuild", () => {
const runningInAzurePipelines = !!process.env.TF_BUILD;

describe.skipIf(runningInAzurePipelines)("msbuild", () => {
it("should build a multi-targeting project with default output paths successfully", () => {
const example = new Example("simpleMultiTarget");
example.cleanProjectDir();
Expand Down

0 comments on commit ec82b47

Please sign in to comment.