()
| 57 | |
| 58 | // Retrieve the store data, and test for homogeneity |
| 59 | function onend() { |
| 60 | const store = cls.getStore(); |
| 61 | assert.notStrictEqual(store, undefined); |
| 62 | const data = store.get('data'); |
| 63 | assert.strictEqual(data, data[0].repeat(data.length)); |
| 64 | countdown.dec(); |
| 65 | } |