(ms: number)
| 3 | import { createSmartComputed } from './smart-computed'; |
| 4 | |
| 5 | function sleep(ms: number) { |
| 6 | return new Promise((resolve) => setTimeout(resolve, ms)); |
| 7 | } |
| 8 | |
| 9 | describe('SmartComputed', () => { |
| 10 | it('should execute only when dependencies change', async () => { |
no outgoing calls
no test coverage detected