This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
packages/generator-my-ts-project/src/tests Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export function DroneFileMappingTests(context: TestContext<MyTSModuleGenerator>)
7171 "Checking whether `publish` commands are replaced correctly…" ,
7272 async function ( )
7373 {
74- this . timeout ( 10 * 1000 ) ;
74+ this . timeout ( 20 * 1000 ) ;
7575 Assert . ok ( await AssertCommand ( ( command ) => command . startsWith ( "npm publish" ) ) ) ;
7676 Assert . ok ( await AssertCommand ( ( command ) => ! command . startsWith ( "npx lerna publish" ) , true ) ) ;
7777 } ) ;
@@ -80,14 +80,16 @@ export function DroneFileMappingTests(context: TestContext<MyTSModuleGenerator>)
8080 "Checking whether `lerna exec` commands are replaced correctly…" ,
8181 async function ( )
8282 {
83- this . timeout ( 10 * 1000 ) ;
83+ this . timeout ( 20 * 1000 ) ;
8484 Assert . ok ( await AssertCommand ( ( command ) => ! command . startsWith ( "npx lerna exec" ) , true ) ) ;
8585 } ) ;
8686
8787 test (
8888 "Checking whether github-releases are adjusted correctly…" ,
89- async ( ) =>
89+ async function ( )
9090 {
91+ this . timeout ( 20 * 1000 ) ;
92+
9193 Assert . ok (
9294 ( await fileMappingOptions . Transform ( await fileMappingOptions . Metadata ) ) . every (
9395 ( document ) =>
You can’t perform that action at this time.
0 commit comments