We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.only
1 parent c27b60c commit b65e7d5Copy full SHA for b65e7d5
test/suite/index.ts
@@ -22,6 +22,7 @@ export function run(): Promise<void> {
22
ui: "tdd",
23
color: true,
24
timeout: 3000,
25
+ forbidOnly: process.env["CI"] === "1",
26
});
27
28
const testsRoot = path.resolve(__dirname, "..");
test/suite/testexplorer/XCTestOutputParser.test.ts
@@ -20,7 +20,7 @@ import {
20
} from "../../../src/TestExplorer/TestParsers/XCTestOutputParser";
21
import { TestRunState, TestStatus } from "./MockTestRunState";
-suite.only("XCTestOutputParser Suite", () => {
+suite("XCTestOutputParser Suite", () => {
suite("Darwin", () => {
const outputParser = new XCTestOutputParser(darwinTestRegex);
0 commit comments