diff --git a/tests/cases/fourslash/getOutliningForBlockComments.ts b/tests/cases/fourslash/getOutliningForBlockComments.ts index 66838d0db75..cc0bbc3c310 100644 --- a/tests/cases/fourslash/getOutliningForBlockComments.ts +++ b/tests/cases/fourslash/getOutliningForBlockComments.ts @@ -99,6 +99,17 @@ //// return 1; //// }|] ////}|] +//// +////// Over a function expression assigned to a variable +//// [|/** +//// * Return a sum +//// * @param {Number} y +//// * @param {Number} z +//// * @returns {Number} the sum of y and z +//// */|] +//// const sum2 = (y, z) =>[| { +//// return y + z; +//// }|]; verify.outliningSpansInCurrentFile(test.ranges());