mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-08 15:13:23 +00:00
Remove non-existent wake scanner blueprints
This commit is contained in:
@@ -203,7 +203,19 @@ describe('JSON Data', function() {
|
||||
expect(modification.method).toBeDefined('Modification has no method, ID:' + modification.id);
|
||||
ids[modification.id] = true;
|
||||
}
|
||||
});
|
||||
|
||||
it('has valid module modifications', function() {
|
||||
for (var m in Modifications.modules) {
|
||||
const module = Modifications.modules[m];
|
||||
for (var bp in module.blueprints) {
|
||||
expect(Modifications.blueprints[bp]).toBeDefined('Missing ' + bp + ' for ' + m);
|
||||
for (var g in module.blueprints[bp]) {
|
||||
const grade = module.blueprints[bp][g];
|
||||
expect(Modifications.blueprints[bp].grades[grade]).toBeDefined('Missing ' + bp + ' grade ' + grade + ' for ' + m);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
it('has valid specials', function() {
|
||||
|
||||
Reference in New Issue
Block a user