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(() => {
99} ) ;
1010
1111describe ( "Keyboard" , ( ) => {
12- it ( "should have a default delay of 500 ms" , ( ) => {
12+ it ( "should have a default delay of 300 ms" , ( ) => {
1313 // GIVEN
1414 const adapterMock = new NativeAdapter ( ) ;
1515 const SUT = new Keyboard ( adapterMock ) ;
1616
1717 // WHEN
1818
1919 // THEN
20- expect ( SUT . config . autoDelayMs ) . toEqual ( 500 ) ;
20+ expect ( SUT . config . autoDelayMs ) . toEqual ( 300 ) ;
2121 } ) ;
2222
2323 it ( "should pass input strings down to the type call." , async ( ) => {
@@ -38,6 +38,7 @@ describe("Keyboard", () => {
3838
3939 it ( "should pass multiple input strings down to the type call." , async ( ) => {
4040 // GIVEN
41+ jest . setTimeout ( 10000 ) ;
4142 const adapterMock = new NativeAdapter ( ) ;
4243 const SUT = new Keyboard ( adapterMock ) ;
4344 const payload = [ "Test input!" , "Array test2" ] ;
You can’t perform that action at this time.
0 commit comments