refactor: Remove unused common script src files

This commit is contained in:
Blade Barringer
2016-03-01 08:49:25 -06:00
parent 531d3969f4
commit c96ddaeebe
50 changed files with 5 additions and 3463 deletions

View File

@@ -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');
};