File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,16 @@ build/image:
2121 script :
2222 - echo "build"
2323
24+ # @Description Quoted with a colon: and "quotes"
25+ " quoted job " :
26+ script :
27+ - echo "quoted"
28+
29+ # @Description Single quoted job
30+ ' single quoted ' :
31+ script :
32+ - echo "single"
33+
2434# @Description Runs the tests
2535plainjob :
2636 script :
Original file line number Diff line number Diff line change @@ -26,5 +26,7 @@ test.concurrent("comment-directive-anchor --list", async () => {
2626 expect ( descriptionOf ( "sourcemaps" ) ) . toBe ( "Upload source maps. Opt in per brand:" ) ;
2727 expect ( descriptionOf ( "deploy to prod" ) ) . toBe ( "Deploys everything" ) ;
2828 expect ( descriptionOf ( "build/image" ) ) . toBe ( "Builds the image" ) ;
29+ expect ( descriptionOf ( "quoted job" ) ) . toBe ( "Quoted with a colon: and \"quotes\"" ) ;
30+ expect ( descriptionOf ( "single quoted" ) ) . toBe ( "Single quoted job" ) ;
2931 expect ( descriptionOf ( "plainjob" ) ) . toBe ( "Runs the tests" ) ;
3032} ) ;
You can’t perform that action at this time.
0 commit comments