Skip to content

Commit 84d1906

Browse files
committed
test: replace missing services in auth js file
1 parent 8dff3f7 commit 84d1906

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

auth.js.enc

640 Bytes
Binary file not shown.

test/integration/test.assistant.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,9 @@ describe('assistant_integration', function() {
160160
if (err) {
161161
return done(err);
162162
}
163-
assert.deepEqual(result.context.system.dialog_stack, [{ dialog_node: 'root' }]);
163+
assert.deepEqual(result.context.system.dialog_stack, [
164+
{ dialog_node: 'node_22_1467833484410' },
165+
]);
164166
done();
165167
});
166168
});
@@ -182,7 +184,9 @@ describe('assistant_integration', function() {
182184
if (err) {
183185
return done(err);
184186
}
185-
assert.deepEqual(result.context.system.dialog_stack, [{ dialog_node: 'root' }]);
187+
assert.deepEqual(result.context.system.dialog_stack, [
188+
{ dialog_node: 'node_22_1467833484410' },
189+
]);
186190
done();
187191
});
188192
});
@@ -204,7 +208,7 @@ describe('assistant_integration', function() {
204208
if (err) {
205209
return done(err);
206210
}
207-
assert.deepEqual(result.context.system.dialog_stack, ['root']);
211+
assert.deepEqual(result.context.system.dialog_stack, ['node_22_1467833484410']);
208212
done();
209213
});
210214
});

test/integration/test.language_translator.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ describe('language_translator_integration', function() {
2929
language_translator.getModels(null, done);
3030
});
3131

32-
it('translate()', function(done) {
32+
// NO LONGER AVAILABLE IN THE SERVICE
33+
it.skip('translate()', function(done) {
3334
const params = {
3435
text: 'this is a test',
3536
source: 'en',

0 commit comments

Comments
 (0)