update IO tests
This commit is contained in:
parent
04d81ad7be
commit
56be48549d
2 changed files with 2 additions and 6 deletions
test
|
@ -1,9 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
var io_base = 'proxy.php?resource=internalapi/';
|
||||
var project_base = io_base + 'project/';
|
||||
var project_base = 'http://cdn.projects.scratch.mit.edu/internalapi/project/';
|
||||
var project_suffix = '/get/';
|
||||
var asset_base = io_base + 'asset/';
|
||||
var asset_base = 'http://cdn.assets.scratch.mit.edu/internalapi/asset/';
|
||||
var asset_suffix = '/get/';
|
||||
var soundbank_base = 'soundbank/';
|
||||
var spriteLayerCount = 0;
|
||||
|
|
|
@ -13,10 +13,6 @@ describe('IO', function() {
|
|||
expect(io.data).toBe(null);
|
||||
});
|
||||
|
||||
it('should have a base', function() {
|
||||
expect(io.base).toBe(io_base);
|
||||
});
|
||||
|
||||
it('should have a project_base', function() {
|
||||
expect(io.project_base).toBe(project_base);
|
||||
});
|
||||
|
|
Reference in a new issue