Skip to content

Commit

Permalink
Smaller bundle - minor fix for preliminary unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Linder committed Oct 11, 2018
1 parent e09c252 commit 108f560
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional/validation-functions-and-decorators.spec.ts
Expand Up @@ -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",
Expand All @@ -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);
});

Expand Down

0 comments on commit 108f560

Please sign in to comment.