test41.spec.js 288 B

12345678
  1. import { LocalizedStrings } from '../js/services/localizedStringsService';
  2. describe('The LocalizedStrings services', function () {
  3. it(`should provide the corret message for the type and id given`, function () {
  4. expect(LocalizedStrings.getUI('start')).toEqual('inicio');
  5. });
  6. });