File tree Expand file tree Collapse file tree 2 files changed +22
-3
lines changed
javascriptv3/example_code/location-services Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -58,16 +58,16 @@ import data from "./inputs.json" with { type: "json" };
58
58
*/
59
59
/* v8 ignore next 3 */
60
60
const pressEnter = new ScenarioInput ( "continue" , "Press Enter to continue" , {
61
- type : "input " ,
62
- verbose : "true " ,
61
+ type : "confirm " ,
62
+ verbose : "false " ,
63
63
} ) ;
64
64
65
65
const pressEnterConfirm = new ScenarioInput (
66
66
"confirm" ,
67
67
"Press Enter to continue" ,
68
68
{
69
69
type : "confirm" ,
70
- verbose : "true " ,
70
+ verbose : "false " ,
71
71
} ,
72
72
) ;
73
73
Original file line number Diff line number Diff line change
1
+ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import { describe , it } from "vitest" ;
5
+ import { main } from "../actions/create-map.js" ;
6
+ import data from "../actions/inputs.json" ;
7
+
8
+ describe ( "test copy-object-conditional-request-if-match" , ( ) => {
9
+ it (
10
+ "should not re-throw service exceptions" ,
11
+ async ( ) => {
12
+ await main ( {
13
+ MapName : `${ data . inputs . mapName } ` ,
14
+ Configuration : { style : "VectorEsriNavigation" } ,
15
+ } ) ;
16
+ } ,
17
+ { timeout : 600000 } ,
18
+ ) ;
19
+ } ) ;
You can’t perform that action at this time.
0 commit comments