Raw.Spec.js
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
feature("Getting raw value",function(){
scenario("After typing",function(){
given("an input with a mask containing a literal", function(){
input
.mask("9/9");
});
when("typing all numbers",function(){
input.mashKeys("12");
});
then("raw value should be correct",function(){
expect(input.mask()).toEqual("12");
});
});
scenario("While typing",function(){
given("an input with a mask containing a literal", function(){
input
.mask("9/9");
});
when("typing a number",function(){
input.mashKeys("1");
});
then("raw value should be correct",function(){
expect(input.mask()).toEqual("1");
});
});
scenario("Before typing",function(){
given("an input with a mask containing a literal", function(){
input
.mask("9/9");
});
then("raw value should be correct",function(){
expect(input.mask()).toEqual("");
});
});
scenario("After typing partial input past an optional marker",function(){
given("an input with a mask containing a literal", function(){
input
.mask("9?99");
});
when("typing a partial input",function(){
input.mashKeys("12");
});
then("raw value should be correct",function(){
expect(input.mask()).toEqual("12");
});
});
});