mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-15 00:12:17 +00:00
18 lines
468 B
JavaScript
18 lines
468 B
JavaScript
import back from '../../../common/script/src/content/gear/back';
|
|
import {each} from 'lodash';
|
|
|
|
describe('Back', () => {
|
|
each(back, (set) => {
|
|
each(set, (gear, key) => {
|
|
describe(`${key} Back`, () => {
|
|
it('has a valid text attribute', () => {
|
|
expectValidTranslationString(gear.text);
|
|
});
|
|
|
|
it('has a valid notes attribute', () => {
|
|
expectValidTranslationString(gear.notes);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|