import PromiseKit /// Delay the execution of the promise constructed in `body` by `delay` seconds. public func withDelay(_ delay: TimeInterval, completionQueue: DispatchQueue, body: @escaping () -> Promise) -> Promise { #if DEBUG assert(Thread.current.isMainThread) // Timers don't do well on background queues #endif let (promise, seal) = Promise.pending() Timer.scheduledTimer(withTimeInterval: delay, repeats: false) { _ in body().done(on: completionQueue) { seal.fulfill($0) }.catch(on: completionQueue) { seal.reject($0) } } return promise }