File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ beforeEach(() => {
9
9
} ) ;
10
10
11
11
describe ( "Keyboard" , ( ) => {
12
- it ( "should have a default delay of 500 ms" , ( ) => {
12
+ it ( "should have a default delay of 300 ms" , ( ) => {
13
13
// GIVEN
14
14
const adapterMock = new NativeAdapter ( ) ;
15
15
const SUT = new Keyboard ( adapterMock ) ;
16
16
17
17
// WHEN
18
18
19
19
// THEN
20
- expect ( SUT . config . autoDelayMs ) . toEqual ( 500 ) ;
20
+ expect ( SUT . config . autoDelayMs ) . toEqual ( 300 ) ;
21
21
} ) ;
22
22
23
23
it ( "should pass input strings down to the type call." , async ( ) => {
@@ -38,6 +38,7 @@ describe("Keyboard", () => {
38
38
39
39
it ( "should pass multiple input strings down to the type call." , async ( ) => {
40
40
// GIVEN
41
+ jest . setTimeout ( 10000 ) ;
41
42
const adapterMock = new NativeAdapter ( ) ;
42
43
const SUT = new Keyboard ( adapterMock ) ;
43
44
const payload = [ "Test input!" , "Array test2" ] ;
You can’t perform that action at this time.
0 commit comments