diff options
author | 2022-02-17 03:49:28 -0800 | |
---|---|---|
committer | 2022-02-17 03:49:28 -0800 | |
commit | 32eb20702e283c4b47db3a42b43051949321e308 (patch) | |
tree | d4d2cc27e8cf6afb7365a57da7341d16465ac308 /integration/bunjs-only-snippets/macro-check.js | |
parent | 17a7e2b241332eb186d4c8848d3ad631ff50c3d3 (diff) | |
download | bun-32eb20702e283c4b47db3a42b43051949321e308.tar.gz bun-32eb20702e283c4b47db3a42b43051949321e308.tar.zst bun-32eb20702e283c4b47db3a42b43051949321e308.zip |
improve test coverage
Diffstat (limited to 'integration/bunjs-only-snippets/macro-check.js')
-rw-r--r-- | integration/bunjs-only-snippets/macro-check.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/integration/bunjs-only-snippets/macro-check.js b/integration/bunjs-only-snippets/macro-check.js index ef84d0b49..0f494a4e7 100644 --- a/integration/bunjs-only-snippets/macro-check.js +++ b/integration/bunjs-only-snippets/macro-check.js @@ -1,7 +1,7 @@ -export function keepSecondArgument(args) { - return args.arguments[1]; +export function keepSecondArgument(bacon1234) { + return bacon1234.arguments[1]; } -export function bacon(args) { - return args.arguments[1]; +export function bacon(heloooo) { + return heloooo.arguments[1]; } |