20 lines
643 B
Diff
20 lines
643 B
Diff
|
diff --git a/test/src/helperTest.ts b/test/src/helperTest.ts
|
||
|
index 2a8ddc8..22f0532 100644
|
||
|
--- a/test/src/helperTest.ts
|
||
|
+++ b/test/src/helperTest.ts
|
||
|
@@ -40,14 +40,6 @@ describe("Helper", function () {
|
||
|
describe("#getVersion()", function () {
|
||
|
const version = Helper.getVersion();
|
||
|
|
||
|
- it("should mention it is served from source code", function () {
|
||
|
- expect(version).to.include("source");
|
||
|
- });
|
||
|
-
|
||
|
- it("should include a short Git SHA", function () {
|
||
|
- expect(version).to.match(/\([0-9a-f]{7,11} /);
|
||
|
- });
|
||
|
-
|
||
|
it("should include a valid semver version", function () {
|
||
|
expect(version).to.match(/v[0-9]+\.[0-9]+\.[0-9]+/);
|
||
|
});
|