Skip to content

Commit

Permalink
feat: keep only the top design and base decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoGathK committed Jul 6, 2022
1 parent 37a1c3e commit 31de89b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/base.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { describe, it, expect } from '@jest/globals';

import { InstanceContainer } from '../src';

describe('InstanceContainer', () => {
it('test', async () => {
const instance = new InstanceContainer();

expect(instance.get('none')).toBe(null);
expect(instance.set('name', 'vodyani')).toBe(undefined);
expect(instance.get('name')).toBe('vodyani');
});
});
Empty file removed test/base.ts
Empty file.
Empty file removed test/decorator.ts
Empty file.

0 comments on commit 31de89b

Please sign in to comment.