Remove unused getCostumeName function

This commit is contained in:
Florrie 2018-06-12 19:31:53 -03:00
parent 24c6338302
commit c24e34d4e3
2 changed files with 0 additions and 13 deletions

View file

@ -39,13 +39,6 @@ test('getCostumeNumberName can return costume name', t => {
t.end();
});
test('getCostumeName returns costume name', t => {
util.target.currentCostume = 0; // This is 0-indexed.
const name = blocks.getCostumeNumberName({}, util);
t.strictEqual(name, 'first name');
t.end();
});
test('getBackdropNumberName returns 1-indexed costume number', t => {
util.target.currentCostume = 2; // This is 0-indexed.
const args = {NUMBER_NAME: 'number'};