Skip to content

Commit

Permalink
fixup! feat: init js translator
Browse files Browse the repository at this point in the history
  • Loading branch information
davinov committed Aug 28, 2020
1 parent 5a68687 commit bbc0883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/translator.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ describe('translator registration', () => {
it('should be possible to get all available translators', () => {
registerTranslator('dummy', DummyStringTranslator);
const translators = availableTranslators();
expect(Object.keys(translators).sort()).toEqual(['dummy', 'mongo36', 'mongo40']);
expect(Object.keys(translators).sort()).toEqual(['dummy', 'js', 'mongo36', 'mongo40']);
});
});

0 comments on commit bbc0883

Please sign in to comment.