PromiseKit/Tests/LinuxMain.swift
Doug 2b90cb3d4e
'Cancel' for PromiseKit (#899)
This patch adds the concept of a `CancelContext` to PromiseKit allowing chains to handle cancellation properly for each independent promise after the cancel point.
2019-04-07 16:25:31 -04:00

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)