chore: ded

This commit is contained in:
cha0s 2021-02-04 22:13:23 -06:00
parent 6c78ba9cb4
commit ea3efdc353
4 changed files with 6 additions and 3 deletions

View File

@ -18,7 +18,6 @@ describe('Perishable', () => {
beforeEach(async () => {
entity = await Entity.load({
traits: {
Existent: {},
Perishable: {
params: {
ttl: 10,

View File

@ -82,7 +82,6 @@ describe('Spawner', () => {
for (let i = 0; i < COUNT; ++i) {
await entity.spawnRaw({
traits: {
Existent: {},
Listed: {},
Mobile: {},
},

View File

@ -52,6 +52,12 @@ export default (latus) => class Animated extends decorate(Trait) {
};
}
static dependencies() {
return [
'Visible',
];
}
static describe() {
return {
isAnimating: {

View File

@ -25,7 +25,6 @@ describe('Layer', () => {
const {Entity, EntityList, Layer} = latus.get('%resources');
entity = await Entity.load({
traits: {
Existent: {},
Layered: {},
Listed: {},
},