Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit f34138b

Browse files
committed
Add test for "Autocomplete: add support for open! in addition to open".
1 parent 4a1970a commit f34138b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

test/src/Auto.res

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
open! Belt
2+
3+
let m = List.map
4+
// ^hov

test/src/expected/Auto.res.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Hover src/Auto.res 2:13
2+
{"contents": "```rescript\n(Belt.List.t<'a>, 'a => 'b) => Belt.List.t<'b>\n```\n\n`map xs f`\n\nreturn the list obtained by applying `f` to each element of `xs`\n\n```ml\nmap [1;2] (fun x-> x + 1) = [3;4]\n```\n"}
3+

0 commit comments

Comments
 (0)