mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
refactor: Remove unused common script src files
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
require('./globals.helper');
|
||||
import {each} from 'lodash';
|
||||
|
||||
import i18n from '../../common/script/src/i18n';
|
||||
import i18n from '../../common/script/i18n';
|
||||
i18n.translations = require('../../website/src/libs/i18n.js').translations;
|
||||
|
||||
export const STRING_ERROR_MSG = 'Error processing the string. Please see Help > Report a Bug.';
|
||||
@@ -16,26 +15,3 @@ export function expectValidTranslationString (attribute) {
|
||||
expect(translatedString).to.not.eql(STRING_ERROR_MSG);
|
||||
expect(translatedString).to.not.match(STRING_DOES_NOT_EXIST_MSG);
|
||||
}
|
||||
|
||||
export function describeEachItem (testDescription, set, cb, describeFunction) {
|
||||
// describeFunction allows you to pass in 'only' or 'skip'
|
||||
// as the last argument for writing/debugging tests.
|
||||
// This should only be used with the helper functions .only and .skip below
|
||||
let describeBlock = describe[describeFunction] || describe;
|
||||
|
||||
describeBlock(testDescription, () => {
|
||||
each(set, (item, key) => {
|
||||
describe(key, () => {
|
||||
cb(item, key);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
describeEachItem.only = (des, set, cb) => {
|
||||
describeEachItem(des, set, cb, 'only');
|
||||
};
|
||||
|
||||
describeEachItem.skip = (des, set, cb) => {
|
||||
describeEachItem(des, set, cb, 'skip');
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user