Skip to content

Commit ec82b47

Browse files
authored
Skip an MSBuild e2e test in ADO (#15501)
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)
1 parent b31dd99 commit ec82b47

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Bicep.MSBuild.E2eTests/src/simpleMultiTargeting.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import { describe, expect, it } from "vitest";
55
import { Example } from "./example";
66

7-
describe("msbuild", () => {
7+
const runningInAzurePipelines = !!process.env.TF_BUILD;
8+
9+
describe.skipIf(runningInAzurePipelines)("msbuild", () => {
810
it("should build a multi-targeting project with default output paths successfully", () => {
911
const example = new Example("simpleMultiTarget");
1012
example.cleanProjectDir();

0 commit comments

Comments
 (0)