From 108f56063b0caeb995eeccf431d4b33dd46558e0 Mon Sep 17 00:00:00 2001 From: Christoph Linder Date: Fri, 12 Oct 2018 01:28:51 +0200 Subject: [PATCH] Smaller bundle - minor fix for preliminary unit test --- test/functional/validation-functions-and-decorators.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/functional/validation-functions-and-decorators.spec.ts b/test/functional/validation-functions-and-decorators.spec.ts index 84e69fdd21..ee2d67c496 100644 --- a/test/functional/validation-functions-and-decorators.spec.ts +++ b/test/functional/validation-functions-and-decorators.spec.ts @@ -2848,8 +2848,8 @@ describe("IsMilitaryTime", function() { }); -describe.only("isPhoneNumber", function() { - describe.only("with region", function() { +describe("isPhoneNumber", function() { + describe("with region", function() { const validValues = [ "0311111111", "031 633 60 01", "079 4 666 666", "075 416 20 30", "+41 311111111", "+41 31 633 60 01", "+41 79 4 666 666", "+41 75 416 20 30", @@ -2863,7 +2863,7 @@ describe.only("isPhoneNumber", function() { someProperty: string; } - it.only("should not fail if validator.validate said that its valid", function(done) { + it("should not fail if validator.validate said that its valid", function(done) { checkValidValues(new MyClass(), validValues, done); });