summaryrefslogtreecommitdiff
path: root/cli/tests/integration/repl_tests.rs
AgeCommit message (Collapse)Author
2022-04-22chore(tests): fix pty_clear_function on Windows (#14364)David Sherret
2022-04-20feat(repl): add global clear() function (#14332)Colin Ihrig
This commit adds a clear() function in the REPL which works similar to console.clear().
2022-04-20feat(repl): add "--eval-file" flag to execute a script file on startup (#14247)Naju Mancheril
This commit adds support for "--eval-file" in "deno repl" subcommand. This flag can be used to pass paths or URLs to files, that will be executed on REPL startup. All files will be executed in the same context as the REPL (ie. as "plain old scripts", not ES modules), sharing the global scope. This feature allows to implement custom REPLs on top of Deno's REPL.
2022-04-08fix: upgrade to swc_ecmascript 0.143 (#14238)David Sherret
2022-03-02fix(repl): fix null eval result (#13804)Yoshiya Hinosawa
Co-authored-by: Satya Rohith <me@satyarohith.com>
2022-02-07refactor: factor out CDP message types (#13551)Leo Kettmeir
2022-01-07chore: update copyright to 2022 (#13306)Ryan Dahl
Co-authored-by: Erfan Safari <erfanshield@outlook.com>
2021-12-21chore(tests): remove pty_complete_imports test for deleting the cwd (#13164)David Sherret
2021-12-15feat: REPL import specifier auto-completions (#13078)David Sherret
2021-12-08fix: upgrade swc fixing many bundling and `--no-check` bugs (#13025)David Sherret
2021-10-01fix(repl): avoid panic when assigned to globalThis (#12273)Yoshiya Hinosawa
2021-09-20chore(tests): windows pty tests (#12091)David Sherret
2021-09-07refactor(lsp): use deno_ast and cache swc ASTs (#11780)David Sherret
2021-08-11chore: move test files to testdata directory (#11601)David Sherret
2021-08-06feat(repl): add --eval flag for evaluating code when the repl starts (#11590)David Sherret
2021-08-06feat(repl): support exports in the REPL (#11592)David Sherret
2021-07-19fix(repl): output error without hanging when input is invalid (#11426)Ayato Tokubi
2021-07-14chore(repl): fix integration test input to not throw parse errors (#11401)Ayato Tokubi
2021-07-08feat(repl): support autocomplete on declarations containing a primitive (#11325)David Sherret
2021-07-06fix(repl): do not panic when Deno.inspect throws (#11292)Casper Beyer
2021-06-27chore: split up integration_tests.rs into separate files (#11131)David Sherret