├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── web-and-app-activity-controls.js ├── locales ├── da-DK.json ├── de-DE.json ├── en-US.json ├── es-ES.json ├── fr-FR.json ├── hi-IN.json ├── id-ID.json ├── it-IT.json ├── ja-JP.json ├── ko-KR.json ├── nl-NL.json ├── no-NO.json ├── pl-PL.json ├── pt-BR.json ├── ru-RU.json ├── sv-SE.json ├── th-TH.json ├── tr-TR.json ├── zh-HK.json └── zh-TW.json ├── package.json ├── samples ├── example_test.ts └── skeleton_test.ts ├── src ├── action-on-google-test-manager.ts ├── actions-api-helper.ts ├── constants.ts ├── index.ts ├── merge.ts └── test │ ├── mock-response1.ts │ ├── test-data.ts │ └── test.ts ├── tsconfig.json └── typedoc.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts/" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /bin/web-and-app-activity-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/bin/web-and-app-activity-controls.js -------------------------------------------------------------------------------- /locales/da-DK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/da-DK.json -------------------------------------------------------------------------------- /locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/de-DE.json -------------------------------------------------------------------------------- /locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/en-US.json -------------------------------------------------------------------------------- /locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/es-ES.json -------------------------------------------------------------------------------- /locales/fr-FR.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "annuler" 3 | } 4 | -------------------------------------------------------------------------------- /locales/hi-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/hi-IN.json -------------------------------------------------------------------------------- /locales/id-ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/id-ID.json -------------------------------------------------------------------------------- /locales/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/it-IT.json -------------------------------------------------------------------------------- /locales/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/ja-JP.json -------------------------------------------------------------------------------- /locales/ko-KR.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "취소" 3 | } 4 | -------------------------------------------------------------------------------- /locales/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/nl-NL.json -------------------------------------------------------------------------------- /locales/no-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/no-NO.json -------------------------------------------------------------------------------- /locales/pl-PL.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "Anuluj" 3 | } 4 | -------------------------------------------------------------------------------- /locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/pt-BR.json -------------------------------------------------------------------------------- /locales/ru-RU.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "отмена" 3 | } 4 | -------------------------------------------------------------------------------- /locales/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/sv-SE.json -------------------------------------------------------------------------------- /locales/th-TH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/locales/th-TH.json -------------------------------------------------------------------------------- /locales/tr-TR.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "İptal" 3 | } 4 | -------------------------------------------------------------------------------- /locales/zh-HK.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "取消" 3 | } 4 | -------------------------------------------------------------------------------- /locales/zh-TW.json: -------------------------------------------------------------------------------- 1 | { 2 | "cancel": "取消" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /samples/example_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/samples/example_test.ts -------------------------------------------------------------------------------- /samples/skeleton_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/samples/skeleton_test.ts -------------------------------------------------------------------------------- /src/action-on-google-test-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/action-on-google-test-manager.ts -------------------------------------------------------------------------------- /src/actions-api-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/actions-api-helper.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/merge.ts -------------------------------------------------------------------------------- /src/test/mock-response1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/test/mock-response1.ts -------------------------------------------------------------------------------- /src/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/test/test-data.ts -------------------------------------------------------------------------------- /src/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/src/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/assistant-conversation-testing-nodejs/HEAD/typedoc.json --------------------------------------------------------------------------------