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 item at a specific index', () => {
const value = new ObservableString('old');
value.text = 'new';
expect(value.text).to.deep.equal('new');
});
it('should remove a substring from the string', () => {
const value = new ObservableString('one two two three');
value.remove(4, 8);
expect(value.text).to.deep.equal('one two three');
});
it('should test whether the string is disposed', () => {
const value = new ObservableString();
expect(value.isDisposed).to.equal(false);
value.dispose();
expect(value.isDisposed).to.equal(true);
});
});
it('should empty the string', () => {
const value = new ObservableString('full');
value.clear();
expect(value.text.length).to.equal(0);
expect(value.text).to.equal('');
});
it('should have value changed args', () => {
let called = false;
const value = new ObservableString();
value.changed.connect((sender, args) => {
expect(sender).to.equal(value);
expect(args.type).to.equal('set');
expect(args.start).to.equal(0);
expect(args.end).to.equal(3);
expect(args.value).to.equal('new');
called = true;
});
value.text = 'new';
expect(called).to.equal(true);
});
});
it('should return `String`', () => {
const value = new ObservableString();
expect(value.type).to.equal('String');
});
});
it('should be emitted when the string changes', () => {
let called = false;
const value = new ObservableString();
value.changed.connect(() => {
called = true;
});
value.text = 'change';
expect(called).to.equal(true);
});
it('should initialize the string value', () => {
const value = new ObservableString('hello');
expect(value.text).to.deep.equal('hello');
});
});
it('should trigger a changed signal', () => {
let called = false;
const value = new ObservableString('full');
value.changed.connect((sender, args) => {
expect(sender).to.equal(value);
expect(args.type).to.equal('set');
expect(args.start).to.equal(0);
expect(args.end).to.equal(0);
expect(args.value).to.equal('');
called = true;
});
value.clear();
expect(called).to.equal(true);
});
});
it('should accept no arguments', () => {
const value = new ObservableString();
expect(value instanceof ObservableString).to.equal(true);
});