Skip to content

Commit 368a045

Browse files
committed
[conversation] Prepare test for getCounterExamples
1 parent 71dc953 commit 368a045

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/integration/test.conversation.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,21 @@ describe('conversation_integration', function() {
491491
});
492492
});
493493

494+
describe('getCounterExamples()', function() {
495+
it('should return counterExamples of the workspace', function(done) {
496+
const params = {
497+
workspace_id: workspace1.workspace_id
498+
};
499+
500+
conversation.getCounterExamples(params, function(err, result) {
501+
if (err) {
502+
return done(err);
503+
}
504+
done();
505+
});
506+
});
507+
});
508+
494509
describe('deleteWorkspace()', function() {
495510
it('should delete the workplace', function(done) {
496511
const params = {

0 commit comments

Comments
 (0)