This patch adds the concept of a `CancelContext` to PromiseKit allowing chains to handle cancellation properly for each independent promise after the cancel point.
15 lines
234 B
Swift
15 lines
234 B
Swift
import XCTest
|
|
|
|
import A__js
|
|
import A__swift
|
|
import Cancel
|
|
import Core
|
|
|
|
var tests = [XCTestCaseEntry]()
|
|
tests += A__js.__allTests()
|
|
tests += A__swift.__allTests()
|
|
tests += Cancel.__allTests()
|
|
tests += Core.__allTests()
|
|
|
|
XCTMain(tests)
|