Skip to content

Commit

Permalink
fix(core.gbapp): No more empty tests; reference errors fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Apr 3, 2020
1 parent 2f3756d commit b6e3611
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 62 deletions.
10 changes: 0 additions & 10 deletions packages/core.gbapp/tests/core.test.ts

This file was deleted.

50 changes: 0 additions & 50 deletions packages/core.gbapp/tests/vm.test.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class FeedbackDialog extends IGBDialog {
async step => {
const locale = step.context.activity.locale;
const rate = step.result.entity;
const user = await min.userProfile.get(context, {});
const user = await min.userProfile.get(step.context, {});
await service.updateConversationRate(user.conversation, rate);
await step.context.sendActivity(Messages[locale].thanks);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class QualityDialog extends IGBDialog {
min.dialogs.add(new WaterfallDialog('/quality', [
async step => {
const locale = step.context.activity.locale;
const user = await min.userProfile.get(context, {});
const user = await min.userProfile.get(step.context, {});

const score = step.result;

Expand Down

0 comments on commit b6e3611

Please sign in to comment.