diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-18 09:46:33 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 23:46:33 +0000 |
commit | 25a80bc523bf47d5eba8d578b9ffeba26a8d0341 (patch) | |
tree | 96880afb6427f22fef2fd4bf86b6ec2d96c2a5f6 /tests/specs/publish/prefer_fast_check_graph/mod.ts | |
parent | 24fa5c784a7a4731ba8864e52977857959c580ed (diff) |
test(publish): check specifiers outside fast check module graph (#23369)
Closes #23023
Diffstat (limited to 'tests/specs/publish/prefer_fast_check_graph/mod.ts')
-rw-r--r-- | tests/specs/publish/prefer_fast_check_graph/mod.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/publish/prefer_fast_check_graph/mod.ts b/tests/specs/publish/prefer_fast_check_graph/mod.ts new file mode 100644 index 000000000..195730f3e --- /dev/null +++ b/tests/specs/publish/prefer_fast_check_graph/mod.ts @@ -0,0 +1,5 @@ +export * from "./subtract.ts"; + +export function add(a: number, b: number): number { + return a + b; +} |