diff options
author | Valentin Anger <syrupthinker@gryphno.de> | 2020-06-28 16:35:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 10:35:12 -0400 |
commit | 660f86f1a21298f7795760a24b91b7bd8788afc3 (patch) | |
tree | 1750174db894c09a0933f5068fc66d30038c0597 /cli/doc/tests.rs | |
parent | 89ebe2079bf51ec55c89c093ab16c3179ccd43fe (diff) |
fix(cli/doc): doc printer missing [] around tuple type (#6523)
Diffstat (limited to 'cli/doc/tests.rs')
-rw-r--r-- | cli/doc/tests.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cli/doc/tests.rs b/cli/doc/tests.rs index 8886f76be..7efc3857b 100644 --- a/cli/doc/tests.rs +++ b/cli/doc/tests.rs @@ -1605,3 +1605,20 @@ export namespace Deno { let found = find_nodes_by_name_recursively(entries, "a.b.c".to_string()); assert_eq!(found.len(), 0); } + +#[tokio::test] +async fn generic_instantiated_with_tuple_type() { + let source_code = r#" +interface Generic<T> {} +export function f(): Generic<[string, number]> { return {}; } + "#; + + let loader = + TestLoader::new(vec![("test.ts".to_string(), source_code.to_string())]); + let entries = DocParser::new(loader).parse("test.ts").await.unwrap(); + + assert!(colors::strip_ansi_codes( + crate::doc::printer::format(entries).as_str() + ) + .contains("Generic<[string, number]>")) +} |