Skip to content

Commit

Permalink
set continueAfterFailure = false on unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arielelkin committed Apr 5, 2018
1 parent 867f44b commit 1c014fa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions PocketSVGTests/PocketSVGTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ import PocketSVG

class PocketSVGTests: XCTestCase {

override func setUp() {
super.setUp()
continueAfterFailure = false
}

func testSVGAttributesFromRectangle() {
let testBundle = Bundle(for: type(of: self))
let svgURL = testBundle.url(forResource: "test_rectangle", withExtension: "svg")!
Expand Down

0 comments on commit 1c014fa

Please sign in to comment.