From ea12b75ce5b7e2f6e25237369865695dc2af1d09 Mon Sep 17 00:00:00 2001 From: Patti Shin Date: Fri, 8 Mar 2024 12:56:34 -0800 Subject: [PATCH] refactor: removing skip for detect-intent-sentiment-analysis-test test (#3637) --- dialogflow-cx/test/detect-intent-sentiment-analysis-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialogflow-cx/test/detect-intent-sentiment-analysis-test.js b/dialogflow-cx/test/detect-intent-sentiment-analysis-test.js index 9ea0fdfa60..67a43edc37 100644 --- a/dialogflow-cx/test/detect-intent-sentiment-analysis-test.js +++ b/dialogflow-cx/test/detect-intent-sentiment-analysis-test.js @@ -19,7 +19,7 @@ const {describe, it} = require('mocha'); const execSync = require('child_process').execSync; const exec = cmd => execSync(cmd, {encoding: 'utf8'}); -describe.skip('detect intent with sentiment analysis', () => { +describe('detect intent with sentiment analysis', () => { const cmd = 'node detect-intent-with-sentiment-analysis.js'; const projectId = process.env.GCLOUD_PROJECT;