1
0
Fork 0

fix(test): correct name for help verbs in context

This commit is contained in:
Sean Sube 2022-10-21 13:29:25 -05:00
parent e04c7c6df5
commit ec1778cf68
1 changed files with 3 additions and 3 deletions

View File

@ -491,7 +491,7 @@ describe('local state service', () => {
const context = mustExist(output.context);
for (const verb of META_VERBS) {
expect(context.verbs, `context verb: ${verb}`).to.include(verb);
expect(context.helpVerbs, `context verb: ${verb}`).to.include(verb);
}
});
@ -527,8 +527,8 @@ describe('local state service', () => {
expect(output.line).to.equal('meta.help');
const context = mustExist(output.context);
expect(context.verbs, 'room verb foo').to.include('verbs.world.foo');
expect(context.verbs, 'room verb bar').to.include('verbs.world.bar');
expect(context.helpVerbs, 'room verb foo').to.include('verbs.world.foo');
expect(context.helpVerbs, 'room verb bar').to.include('verbs.world.bar');
});
});