We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac03dab commit a874af9Copy full SHA for a874af9
test/attrable.ts
@@ -97,6 +97,13 @@ describe('Attrable', () => {
97
expect(instance).to.have.property('getCount', 0)
98
expect(instance).to.have.property('setCount', 4)
99
})
100
+
101
+ it('updates properties synchronously ', () => {
102
+ instance.fooBar = 'goodbye'
103
+ expect(instance).to.have.property('fooBar', 'goodbye')
104
+ instance.bingBaz = 'universe'
105
+ expect(instance).to.have.property('bingBaz', 'universe')
106
+ })
107
}
108
109
describe('types', () => {
0 commit comments