Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should set the max length', async () => {
const model = new LoggerOutputAreaModel({ maxLength: 10 });
expect(model.maxLength).toEqual(10);
model.dispose();
});
});
beforeEach(() => {
model = new LoggerOutputAreaModel({ maxLength: 10 });
});
afterEach(() => {