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.
1 parent 19756d5 commit 87f1a8cCopy full SHA for 87f1a8c
__tests__/get-version.test.ts
@@ -22,4 +22,11 @@ Target: x86_64-apple-macosx11.0`
22
);
23
expect(version).toBe("5.5");
24
});
25
+
26
+ it("identifies version from swift version on linux", async () => {
27
+ const version = versionFromString(
28
+ "Swift version 5.5.1 (swift-5.5.1-RELEASE)"
29
+ );
30
+ expect(version).toBe("5.5.1");
31
+ });
32
0 commit comments