├── .eslintrc.js ├── .github └── workflows │ ├── node.js.yml │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── sample.PNG ├── src ├── cli │ ├── generation.js │ ├── index.js │ ├── instrumentation.js │ └── utils.js ├── generator │ ├── components │ │ ├── AssignmentOperation │ │ │ ├── AssignmentOperation.js │ │ │ └── AssignmentOperation.test.js │ │ ├── DependencyInjectionStubBlock │ │ │ ├── DependencyInjectionStubBlock.js │ │ │ └── DependencyInjectionStubBlock.test.js │ │ ├── DescribeFunctionBlock │ │ │ ├── DescribeFunctionBlock.js │ │ │ └── DescribeFunctionBlock.test.js │ │ ├── ExpectStatement │ │ │ ├── ExpectStatement.js │ │ │ └── ExpectStatement.test.js │ │ ├── FunctionStubBlock │ │ │ ├── FunctionStubBlock.js │ │ │ └── FunctionStubBlock.test.js │ │ ├── ImportStatements │ │ │ ├── ImportStatements.js │ │ │ └── ImportStatements.test.js │ │ ├── InputAssignment │ │ │ ├── InputAssignment.js │ │ │ └── InputAssignment.test.js │ │ ├── InvokeStatement │ │ │ ├── InvokeStatement.js │ │ │ └── InvokeStatement.test.js │ │ ├── ItBlock │ │ │ ├── ItBlock.js │ │ │ └── ItBlock.test.js │ │ ├── JestMockImplementationStatement │ │ │ ├── JestMockImplementationStatement.js │ │ │ └── JestMockImplementationStatement.test.js │ │ ├── MockFunctionStubBlock │ │ │ ├── MockFunctionStubBlock.js │ │ │ └── MockFunctionStubBlock.test.js │ │ ├── MockImportBlock │ │ │ ├── MockImportBlock.js │ │ │ └── MockImportBlock.test.js │ │ ├── PackagedExternalFile │ │ │ ├── PackagedExternalFile.js │ │ │ └── PackagedExternalFile.test.js │ │ └── TestFileBlock │ │ │ ├── TestFileBlock.js │ │ │ └── TestFileBlock.test.js │ ├── external-data-aggregator.js │ ├── external-data-aggregator.test.js │ ├── index.js │ ├── utils.js │ └── utils.test.js ├── index.js ├── index.ts ├── plugin │ ├── blacklist-generator.js │ ├── blacklist-generator.test.js │ ├── capture-logic.js │ ├── capture-logic.test.js │ ├── dependency-injection.js │ ├── file-meta.js │ ├── index.js │ ├── meta.js │ ├── mocks-logic.js │ ├── object-capture-logic.js │ ├── object-capture-logic.test.js │ ├── used-plugins.js │ └── wrapper-logic.js ├── recorder │ ├── file-meta.js │ ├── index.js │ ├── injection │ │ ├── di-recorder.js │ │ ├── di-recorder.test.js │ │ ├── index.js │ │ ├── injector.js │ │ ├── injector.test.js │ │ ├── param-crawler.js │ │ └── param-crawler.test.js │ ├── manager.js │ ├── manager.test.js │ ├── mock │ │ ├── capture.js │ │ ├── capture.test.js │ │ ├── index.js │ │ └── wrapper.js │ ├── robustness-tests │ │ ├── dynamic-type-inference.test.js │ │ ├── hash-helper.test.js │ │ ├── manager.test.js │ │ ├── misc.test.js │ │ └── object-traverser.test.js │ ├── user-functions │ │ ├── capture-logic.js │ │ ├── capture-logic.test.js │ │ ├── index.js │ │ ├── pre.js │ │ ├── pre.test.js │ │ ├── wrapper.js │ │ └── wrapper.test.js │ └── utils │ │ ├── cls-recordings.js │ │ ├── cls-recordings.test.js │ │ ├── dynamic-type-inference.js │ │ ├── dynamic-type-inference.test.js │ │ ├── hash-helper.js │ │ ├── hash-helper.test.js │ │ ├── manager-helpers.js │ │ ├── manager-helpers.test.js │ │ ├── misc.js │ │ ├── misc.test.js │ │ ├── object-traverser.js │ │ └── object-traverser.test.js └── util │ ├── cls-provider │ ├── async-hook-provider.js │ ├── async-hook-provider.test.js │ └── index.js │ ├── constants.js │ ├── misc.js │ ├── misc.test.js │ ├── walker.js │ └── walker.test.js └── test_integration ├── flows ├── 01_module_exports │ ├── 01_module_exports.js │ ├── 01_module_exports_activity.json │ ├── 01_module_exports_generated.test.js │ └── 01_module_exports_instrumented.js ├── 02_async_functions │ ├── 02_async_functions.js │ ├── 02_async_functions_activity.json │ ├── 02_async_functions_generated.test.js │ └── 02_async_functions_instrumented.js ├── 03_ecma_export │ ├── 03_ecma_export.js │ ├── 03_ecma_export_activity.json │ ├── 03_ecma_export_generated.test.js │ └── 03_ecma_export_instrumented.js ├── 04_unserializeable │ ├── 04_unserializeable.js │ ├── 04_unserializeable_activity.json │ ├── 04_unserializeable_generated.test.js │ └── 04_unserializeable_instrumented.js ├── 05_dependency_injection │ ├── 05_dependency_injection.js │ ├── 05_dependency_injection_activity.json │ ├── 05_dependency_injection_generated.test.js │ └── 05_dependency_injection_instrumented.js ├── 06_mocks │ ├── 06_mocks.js │ ├── 06_mocks │ │ ├── expContinuationFn_0_fsReadFileSync0.mock.js │ │ ├── expContinuationFn_0_result.mock.js │ │ ├── getTodo_0_auxilary1Foo40.mock.js │ │ ├── getTodo_0_fsReadFileSync0.mock.js │ │ ├── getTodo_0_fsReadFileSync1.mock.js │ │ └── getTodo_0_result.mock.js │ ├── 06_mocks_activity.json │ ├── 06_mocks_generated.test.js │ ├── 06_mocks_instrumented.js │ ├── auxilary1.js │ ├── auxilary2.js │ └── response.json ├── 07_large_payload │ ├── 07_large_payload.js │ ├── 07_large_payload │ │ ├── getClickCountsHelper_0_requestDataCb0.mock.js │ │ ├── getClickCountsHelper_0_result.mock.js │ │ ├── getClickCounts_0_result.mock.js │ │ └── getClickCounts_0_undefined0.mock.js │ ├── 07_large_payload_activity.json │ ├── 07_large_payload_generated.test.js │ └── 07_large_payload_instrumented.js ├── 08_this │ ├── 08_this.js │ ├── 08_this_activity.json │ ├── 08_this_generated.test.js │ └── 08_this_instrumented.js ├── 09_typescript_exports │ ├── 09_typescript_exports.js │ ├── 09_typescript_exports_activity.json │ ├── 09_typescript_exports_generated.test.js │ └── 09_typescript_exports_instrumented.js ├── 10_anon_export_default │ ├── 10_anon_export_default.js │ ├── 10_anon_export_default_activity.json │ ├── 10_anon_export_default_generated.test.js │ └── 10_anon_export_default_instrumented.js ├── 11_higher_order │ ├── 11_higher_order.js │ ├── 11_higher_order_activity.json │ ├── 11_higher_order_generated.test.js │ └── 11_higher_order_instrumented.js ├── 12_unwanted_injections │ ├── 12_unwanted_injections.js │ ├── 12_unwanted_injections_activity.json │ ├── 12_unwanted_injections_generated.test.js │ └── 12_unwanted_injections_instrumented.js ├── 13_anon_ts_export_default │ ├── 13_anon_ts_export_default.js │ ├── 13_anon_ts_export_default_activity.json │ ├── 13_anon_ts_export_default_generated.test.js │ └── 13_anon_ts_export_default_instrumented.js ├── 14_anon_module_exports_default │ ├── 14_anon_module_exports_default.js │ ├── 14_anon_module_exports_default_activity.json │ ├── 14_anon_module_exports_default_generated.test.js │ └── 14_anon_module_exports_default_instrumented.js ├── 15_named_module_exports_default │ ├── 15_named_module_exports_default.js │ ├── 15_named_module_exports_default_activity.json │ ├── 15_named_module_exports_default_generated.test.js │ └── 15_named_module_exports_default_instrumented.js ├── 16_exported_objects │ ├── 16_exported_objects.js │ ├── 16_exported_objects │ │ └── largeObjLargeFun_0_result.mock.js │ ├── 16_exported_objects_activity.json │ ├── 16_exported_objects_generated.test.js │ └── 16_exported_objects_instrumented.js ├── 17_param_mutation │ ├── 17_param_mutation.js │ ├── 17_param_mutation_activity.json │ ├── 17_param_mutation_generated.test.js │ └── 17_param_mutation_instrumented.js ├── 18_record_stub_params │ ├── 18_record_stub_params.js │ ├── 18_record_stub_params_activity.json │ ├── 18_record_stub_params_generated.test.js │ ├── 18_record_stub_params_instrumented.js │ └── auxilary.js ├── 19_demo │ ├── 19_demo.js │ ├── 19_demo_activity.json │ ├── 19_demo_generated.test.js │ ├── 19_demo_instrumented.js │ └── sample.json ├── driver.test.js ├── generator.test.js └── plugin.test.js └── util ├── __snapshots__ └── walker.test.js.snap ├── walker.test.js └── walking_test ├── a.js ├── d.exe ├── directory ├── b.jsx └── e.tsx └── f.ts /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.eol": "\n" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | TODO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/package.json -------------------------------------------------------------------------------- /sample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/sample.PNG -------------------------------------------------------------------------------- /src/cli/generation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/cli/generation.js -------------------------------------------------------------------------------- /src/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/cli/index.js -------------------------------------------------------------------------------- /src/cli/instrumentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/cli/instrumentation.js -------------------------------------------------------------------------------- /src/cli/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/cli/utils.js -------------------------------------------------------------------------------- /src/generator/components/AssignmentOperation/AssignmentOperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/AssignmentOperation/AssignmentOperation.js -------------------------------------------------------------------------------- /src/generator/components/AssignmentOperation/AssignmentOperation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/AssignmentOperation/AssignmentOperation.test.js -------------------------------------------------------------------------------- /src/generator/components/DependencyInjectionStubBlock/DependencyInjectionStubBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/DependencyInjectionStubBlock/DependencyInjectionStubBlock.js -------------------------------------------------------------------------------- /src/generator/components/DependencyInjectionStubBlock/DependencyInjectionStubBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/DependencyInjectionStubBlock/DependencyInjectionStubBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/DescribeFunctionBlock/DescribeFunctionBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/DescribeFunctionBlock/DescribeFunctionBlock.js -------------------------------------------------------------------------------- /src/generator/components/DescribeFunctionBlock/DescribeFunctionBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/DescribeFunctionBlock/DescribeFunctionBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/ExpectStatement/ExpectStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ExpectStatement/ExpectStatement.js -------------------------------------------------------------------------------- /src/generator/components/ExpectStatement/ExpectStatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ExpectStatement/ExpectStatement.test.js -------------------------------------------------------------------------------- /src/generator/components/FunctionStubBlock/FunctionStubBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/FunctionStubBlock/FunctionStubBlock.js -------------------------------------------------------------------------------- /src/generator/components/FunctionStubBlock/FunctionStubBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/FunctionStubBlock/FunctionStubBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/ImportStatements/ImportStatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ImportStatements/ImportStatements.js -------------------------------------------------------------------------------- /src/generator/components/ImportStatements/ImportStatements.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ImportStatements/ImportStatements.test.js -------------------------------------------------------------------------------- /src/generator/components/InputAssignment/InputAssignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/InputAssignment/InputAssignment.js -------------------------------------------------------------------------------- /src/generator/components/InputAssignment/InputAssignment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/InputAssignment/InputAssignment.test.js -------------------------------------------------------------------------------- /src/generator/components/InvokeStatement/InvokeStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/InvokeStatement/InvokeStatement.js -------------------------------------------------------------------------------- /src/generator/components/InvokeStatement/InvokeStatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/InvokeStatement/InvokeStatement.test.js -------------------------------------------------------------------------------- /src/generator/components/ItBlock/ItBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ItBlock/ItBlock.js -------------------------------------------------------------------------------- /src/generator/components/ItBlock/ItBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/ItBlock/ItBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/JestMockImplementationStatement/JestMockImplementationStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/JestMockImplementationStatement/JestMockImplementationStatement.js -------------------------------------------------------------------------------- /src/generator/components/JestMockImplementationStatement/JestMockImplementationStatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/JestMockImplementationStatement/JestMockImplementationStatement.test.js -------------------------------------------------------------------------------- /src/generator/components/MockFunctionStubBlock/MockFunctionStubBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/MockFunctionStubBlock/MockFunctionStubBlock.js -------------------------------------------------------------------------------- /src/generator/components/MockFunctionStubBlock/MockFunctionStubBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/MockFunctionStubBlock/MockFunctionStubBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/MockImportBlock/MockImportBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/MockImportBlock/MockImportBlock.js -------------------------------------------------------------------------------- /src/generator/components/MockImportBlock/MockImportBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/MockImportBlock/MockImportBlock.test.js -------------------------------------------------------------------------------- /src/generator/components/PackagedExternalFile/PackagedExternalFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/PackagedExternalFile/PackagedExternalFile.js -------------------------------------------------------------------------------- /src/generator/components/PackagedExternalFile/PackagedExternalFile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/PackagedExternalFile/PackagedExternalFile.test.js -------------------------------------------------------------------------------- /src/generator/components/TestFileBlock/TestFileBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/TestFileBlock/TestFileBlock.js -------------------------------------------------------------------------------- /src/generator/components/TestFileBlock/TestFileBlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/components/TestFileBlock/TestFileBlock.test.js -------------------------------------------------------------------------------- /src/generator/external-data-aggregator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/external-data-aggregator.js -------------------------------------------------------------------------------- /src/generator/external-data-aggregator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/external-data-aggregator.test.js -------------------------------------------------------------------------------- /src/generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/index.js -------------------------------------------------------------------------------- /src/generator/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/utils.js -------------------------------------------------------------------------------- /src/generator/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/generator/utils.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('./cli'); 4 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ts-node 2 | 3 | require('./cli'); 4 | -------------------------------------------------------------------------------- /src/plugin/blacklist-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/blacklist-generator.js -------------------------------------------------------------------------------- /src/plugin/blacklist-generator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/blacklist-generator.test.js -------------------------------------------------------------------------------- /src/plugin/capture-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/capture-logic.js -------------------------------------------------------------------------------- /src/plugin/capture-logic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/capture-logic.test.js -------------------------------------------------------------------------------- /src/plugin/dependency-injection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/dependency-injection.js -------------------------------------------------------------------------------- /src/plugin/file-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/file-meta.js -------------------------------------------------------------------------------- /src/plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/index.js -------------------------------------------------------------------------------- /src/plugin/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/meta.js -------------------------------------------------------------------------------- /src/plugin/mocks-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/mocks-logic.js -------------------------------------------------------------------------------- /src/plugin/object-capture-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/object-capture-logic.js -------------------------------------------------------------------------------- /src/plugin/object-capture-logic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/object-capture-logic.test.js -------------------------------------------------------------------------------- /src/plugin/used-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/used-plugins.js -------------------------------------------------------------------------------- /src/plugin/wrapper-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/plugin/wrapper-logic.js -------------------------------------------------------------------------------- /src/recorder/file-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/file-meta.js -------------------------------------------------------------------------------- /src/recorder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/index.js -------------------------------------------------------------------------------- /src/recorder/injection/di-recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/di-recorder.js -------------------------------------------------------------------------------- /src/recorder/injection/di-recorder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/di-recorder.test.js -------------------------------------------------------------------------------- /src/recorder/injection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/index.js -------------------------------------------------------------------------------- /src/recorder/injection/injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/injector.js -------------------------------------------------------------------------------- /src/recorder/injection/injector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/injector.test.js -------------------------------------------------------------------------------- /src/recorder/injection/param-crawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/param-crawler.js -------------------------------------------------------------------------------- /src/recorder/injection/param-crawler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/injection/param-crawler.test.js -------------------------------------------------------------------------------- /src/recorder/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/manager.js -------------------------------------------------------------------------------- /src/recorder/manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/manager.test.js -------------------------------------------------------------------------------- /src/recorder/mock/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/mock/capture.js -------------------------------------------------------------------------------- /src/recorder/mock/capture.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/mock/capture.test.js -------------------------------------------------------------------------------- /src/recorder/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/mock/index.js -------------------------------------------------------------------------------- /src/recorder/mock/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/mock/wrapper.js -------------------------------------------------------------------------------- /src/recorder/robustness-tests/dynamic-type-inference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/robustness-tests/dynamic-type-inference.test.js -------------------------------------------------------------------------------- /src/recorder/robustness-tests/hash-helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/robustness-tests/hash-helper.test.js -------------------------------------------------------------------------------- /src/recorder/robustness-tests/manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/robustness-tests/manager.test.js -------------------------------------------------------------------------------- /src/recorder/robustness-tests/misc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/robustness-tests/misc.test.js -------------------------------------------------------------------------------- /src/recorder/robustness-tests/object-traverser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/robustness-tests/object-traverser.test.js -------------------------------------------------------------------------------- /src/recorder/user-functions/capture-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/capture-logic.js -------------------------------------------------------------------------------- /src/recorder/user-functions/capture-logic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/capture-logic.test.js -------------------------------------------------------------------------------- /src/recorder/user-functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/index.js -------------------------------------------------------------------------------- /src/recorder/user-functions/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/pre.js -------------------------------------------------------------------------------- /src/recorder/user-functions/pre.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/pre.test.js -------------------------------------------------------------------------------- /src/recorder/user-functions/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/wrapper.js -------------------------------------------------------------------------------- /src/recorder/user-functions/wrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/user-functions/wrapper.test.js -------------------------------------------------------------------------------- /src/recorder/utils/cls-recordings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/cls-recordings.js -------------------------------------------------------------------------------- /src/recorder/utils/cls-recordings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/cls-recordings.test.js -------------------------------------------------------------------------------- /src/recorder/utils/dynamic-type-inference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/dynamic-type-inference.js -------------------------------------------------------------------------------- /src/recorder/utils/dynamic-type-inference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/dynamic-type-inference.test.js -------------------------------------------------------------------------------- /src/recorder/utils/hash-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/hash-helper.js -------------------------------------------------------------------------------- /src/recorder/utils/hash-helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/hash-helper.test.js -------------------------------------------------------------------------------- /src/recorder/utils/manager-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/manager-helpers.js -------------------------------------------------------------------------------- /src/recorder/utils/manager-helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/manager-helpers.test.js -------------------------------------------------------------------------------- /src/recorder/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/misc.js -------------------------------------------------------------------------------- /src/recorder/utils/misc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/misc.test.js -------------------------------------------------------------------------------- /src/recorder/utils/object-traverser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/object-traverser.js -------------------------------------------------------------------------------- /src/recorder/utils/object-traverser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/recorder/utils/object-traverser.test.js -------------------------------------------------------------------------------- /src/util/cls-provider/async-hook-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/cls-provider/async-hook-provider.js -------------------------------------------------------------------------------- /src/util/cls-provider/async-hook-provider.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/cls-provider/async-hook-provider.test.js -------------------------------------------------------------------------------- /src/util/cls-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/cls-provider/index.js -------------------------------------------------------------------------------- /src/util/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/constants.js -------------------------------------------------------------------------------- /src/util/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/misc.js -------------------------------------------------------------------------------- /src/util/misc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/misc.test.js -------------------------------------------------------------------------------- /src/util/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/walker.js -------------------------------------------------------------------------------- /src/util/walker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/src/util/walker.test.js -------------------------------------------------------------------------------- /test_integration/flows/01_module_exports/01_module_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/01_module_exports/01_module_exports.js -------------------------------------------------------------------------------- /test_integration/flows/01_module_exports/01_module_exports_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/01_module_exports/01_module_exports_activity.json -------------------------------------------------------------------------------- /test_integration/flows/01_module_exports/01_module_exports_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/01_module_exports/01_module_exports_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/01_module_exports/01_module_exports_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/01_module_exports/01_module_exports_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/02_async_functions/02_async_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/02_async_functions/02_async_functions.js -------------------------------------------------------------------------------- /test_integration/flows/02_async_functions/02_async_functions_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/02_async_functions/02_async_functions_activity.json -------------------------------------------------------------------------------- /test_integration/flows/02_async_functions/02_async_functions_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/02_async_functions/02_async_functions_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/02_async_functions/02_async_functions_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/02_async_functions/02_async_functions_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/03_ecma_export/03_ecma_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/03_ecma_export/03_ecma_export.js -------------------------------------------------------------------------------- /test_integration/flows/03_ecma_export/03_ecma_export_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/03_ecma_export/03_ecma_export_activity.json -------------------------------------------------------------------------------- /test_integration/flows/03_ecma_export/03_ecma_export_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/03_ecma_export/03_ecma_export_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/03_ecma_export/03_ecma_export_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/03_ecma_export/03_ecma_export_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/04_unserializeable/04_unserializeable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/04_unserializeable/04_unserializeable.js -------------------------------------------------------------------------------- /test_integration/flows/04_unserializeable/04_unserializeable_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/04_unserializeable/04_unserializeable_activity.json -------------------------------------------------------------------------------- /test_integration/flows/04_unserializeable/04_unserializeable_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/04_unserializeable/04_unserializeable_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/04_unserializeable/04_unserializeable_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/04_unserializeable/04_unserializeable_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/05_dependency_injection/05_dependency_injection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/05_dependency_injection/05_dependency_injection.js -------------------------------------------------------------------------------- /test_integration/flows/05_dependency_injection/05_dependency_injection_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/05_dependency_injection/05_dependency_injection_activity.json -------------------------------------------------------------------------------- /test_integration/flows/05_dependency_injection/05_dependency_injection_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/05_dependency_injection/05_dependency_injection_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/05_dependency_injection/05_dependency_injection_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/05_dependency_injection/05_dependency_injection_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/expContinuationFn_0_fsReadFileSync0.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/expContinuationFn_0_fsReadFileSync0.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/expContinuationFn_0_result.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/expContinuationFn_0_result.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/getTodo_0_auxilary1Foo40.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/getTodo_0_auxilary1Foo40.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/getTodo_0_fsReadFileSync0.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/getTodo_0_fsReadFileSync0.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/getTodo_0_fsReadFileSync1.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/getTodo_0_fsReadFileSync1.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks/getTodo_0_result.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks/getTodo_0_result.mock.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks_activity.json -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/06_mocks_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/06_mocks_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/auxilary1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/auxilary1.js -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/auxilary2.js: -------------------------------------------------------------------------------- 1 | // Does nothing 2 | -------------------------------------------------------------------------------- /test_integration/flows/06_mocks/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/06_mocks/response.json -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload/getClickCountsHelper_0_requestDataCb0.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload/getClickCountsHelper_0_requestDataCb0.mock.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload/getClickCountsHelper_0_result.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload/getClickCountsHelper_0_result.mock.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload/getClickCounts_0_result.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload/getClickCounts_0_result.mock.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload/getClickCounts_0_undefined0.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload/getClickCounts_0_undefined0.mock.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload_activity.json -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/07_large_payload/07_large_payload_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/07_large_payload/07_large_payload_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/08_this/08_this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/08_this/08_this.js -------------------------------------------------------------------------------- /test_integration/flows/08_this/08_this_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/08_this/08_this_activity.json -------------------------------------------------------------------------------- /test_integration/flows/08_this/08_this_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/08_this/08_this_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/08_this/08_this_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/08_this/08_this_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/09_typescript_exports/09_typescript_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/09_typescript_exports/09_typescript_exports.js -------------------------------------------------------------------------------- /test_integration/flows/09_typescript_exports/09_typescript_exports_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/09_typescript_exports/09_typescript_exports_activity.json -------------------------------------------------------------------------------- /test_integration/flows/09_typescript_exports/09_typescript_exports_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/09_typescript_exports/09_typescript_exports_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/09_typescript_exports/09_typescript_exports_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/09_typescript_exports/09_typescript_exports_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/10_anon_export_default/10_anon_export_default.js: -------------------------------------------------------------------------------- 1 | export default (a, b) => a + b; 2 | -------------------------------------------------------------------------------- /test_integration/flows/10_anon_export_default/10_anon_export_default_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/10_anon_export_default/10_anon_export_default_activity.json -------------------------------------------------------------------------------- /test_integration/flows/10_anon_export_default/10_anon_export_default_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/10_anon_export_default/10_anon_export_default_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/10_anon_export_default/10_anon_export_default_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/10_anon_export_default/10_anon_export_default_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/11_higher_order/11_higher_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/11_higher_order/11_higher_order.js -------------------------------------------------------------------------------- /test_integration/flows/11_higher_order/11_higher_order_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/11_higher_order/11_higher_order_activity.json -------------------------------------------------------------------------------- /test_integration/flows/11_higher_order/11_higher_order_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/11_higher_order/11_higher_order_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/11_higher_order/11_higher_order_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/11_higher_order/11_higher_order_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/12_unwanted_injections/12_unwanted_injections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/12_unwanted_injections/12_unwanted_injections.js -------------------------------------------------------------------------------- /test_integration/flows/12_unwanted_injections/12_unwanted_injections_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/12_unwanted_injections/12_unwanted_injections_activity.json -------------------------------------------------------------------------------- /test_integration/flows/12_unwanted_injections/12_unwanted_injections_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/12_unwanted_injections/12_unwanted_injections_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/12_unwanted_injections/12_unwanted_injections_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/12_unwanted_injections/12_unwanted_injections_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default.js: -------------------------------------------------------------------------------- 1 | exports.default = (a, b) => a + b; 2 | -------------------------------------------------------------------------------- /test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_activity.json -------------------------------------------------------------------------------- /test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/13_anon_ts_export_default/13_anon_ts_export_default_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default.js: -------------------------------------------------------------------------------- 1 | module.exports = a => a; 2 | -------------------------------------------------------------------------------- /test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_activity.json -------------------------------------------------------------------------------- /test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/14_anon_module_exports_default/14_anon_module_exports_default_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/15_named_module_exports_default/15_named_module_exports_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/15_named_module_exports_default/15_named_module_exports_default.js -------------------------------------------------------------------------------- /test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_activity.json -------------------------------------------------------------------------------- /test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/15_named_module_exports_default/15_named_module_exports_default_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/16_exported_objects/16_exported_objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/16_exported_objects/16_exported_objects.js -------------------------------------------------------------------------------- /test_integration/flows/16_exported_objects/16_exported_objects/largeObjLargeFun_0_result.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/16_exported_objects/16_exported_objects/largeObjLargeFun_0_result.mock.js -------------------------------------------------------------------------------- /test_integration/flows/16_exported_objects/16_exported_objects_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/16_exported_objects/16_exported_objects_activity.json -------------------------------------------------------------------------------- /test_integration/flows/16_exported_objects/16_exported_objects_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/16_exported_objects/16_exported_objects_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/16_exported_objects/16_exported_objects_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/16_exported_objects/16_exported_objects_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/17_param_mutation/17_param_mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/17_param_mutation/17_param_mutation.js -------------------------------------------------------------------------------- /test_integration/flows/17_param_mutation/17_param_mutation_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/17_param_mutation/17_param_mutation_activity.json -------------------------------------------------------------------------------- /test_integration/flows/17_param_mutation/17_param_mutation_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/17_param_mutation/17_param_mutation_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/17_param_mutation/17_param_mutation_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/17_param_mutation/17_param_mutation_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/18_record_stub_params/18_record_stub_params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/18_record_stub_params/18_record_stub_params.js -------------------------------------------------------------------------------- /test_integration/flows/18_record_stub_params/18_record_stub_params_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/18_record_stub_params/18_record_stub_params_activity.json -------------------------------------------------------------------------------- /test_integration/flows/18_record_stub_params/18_record_stub_params_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/18_record_stub_params/18_record_stub_params_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/18_record_stub_params/18_record_stub_params_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/18_record_stub_params/18_record_stub_params_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/18_record_stub_params/auxilary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/18_record_stub_params/auxilary.js -------------------------------------------------------------------------------- /test_integration/flows/19_demo/19_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/19_demo/19_demo.js -------------------------------------------------------------------------------- /test_integration/flows/19_demo/19_demo_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/19_demo/19_demo_activity.json -------------------------------------------------------------------------------- /test_integration/flows/19_demo/19_demo_generated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/19_demo/19_demo_generated.test.js -------------------------------------------------------------------------------- /test_integration/flows/19_demo/19_demo_instrumented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/19_demo/19_demo_instrumented.js -------------------------------------------------------------------------------- /test_integration/flows/19_demo/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/19_demo/sample.json -------------------------------------------------------------------------------- /test_integration/flows/driver.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/driver.test.js -------------------------------------------------------------------------------- /test_integration/flows/generator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/generator.test.js -------------------------------------------------------------------------------- /test_integration/flows/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/flows/plugin.test.js -------------------------------------------------------------------------------- /test_integration/util/__snapshots__/walker.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/util/__snapshots__/walker.test.js.snap -------------------------------------------------------------------------------- /test_integration/util/walker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghost---Shadow/unit-test-recorder/HEAD/test_integration/util/walker.test.js -------------------------------------------------------------------------------- /test_integration/util/walking_test/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_integration/util/walking_test/d.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_integration/util/walking_test/directory/b.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_integration/util/walking_test/directory/e.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_integration/util/walking_test/f.ts: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------