Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta support for Swift Testing, and other improvements. #867

Merged
merged 50 commits into from
Jul 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
2d45183
wip
mbrandonw Jul 3, 2024
3cda2a7
wip
mbrandonw Jul 3, 2024
e71cde1
wip
mbrandonw Jul 3, 2024
822361a
wip
mbrandonw Jul 3, 2024
4201a54
wip
mbrandonw Jul 3, 2024
2408cc7
tests
mbrandonw Jul 3, 2024
8f8da79
wip
mbrandonw Jul 3, 2024
3e37ab0
migration guide
mbrandonw Jul 4, 2024
1efdcec
wip
mbrandonw Jul 4, 2024
b479fa4
wip
mbrandonw Jul 4, 2024
7760adf
wip
stephencelis Jul 4, 2024
7ad8430
Update Sources/SnapshotTesting/AssertSnapshot.swift
stephencelis Jul 4, 2024
cf5666e
wip
mbrandonw Jul 4, 2024
9a6f879
formatting
mbrandonw Jul 4, 2024
104d43f
wip
stephencelis Jul 4, 2024
d69e681
format
stephencelis Jul 4, 2024
9125d57
more
stephencelis Jul 4, 2024
0b9826b
wip
stephencelis Jul 4, 2024
ca6f4dc
fix
stephencelis Jul 4, 2024
d8fecd2
Merge remote-tracking branch 'origin/main' into swift-testing
stephencelis Jul 4, 2024
d84b345
Merge remote-tracking branch 'origin/main' into swift-testing
stephencelis Jul 4, 2024
ac36312
Make record mode opaque.
mbrandonw Jul 4, 2024
246c2e1
more docs
mbrandonw Jul 4, 2024
9d2c475
wip
mbrandonw Jul 4, 2024
9810df4
wip
mbrandonw Jul 4, 2024
0c6b449
Added new 'failed' record strategy, and wrote some tests.
mbrandonw Jul 4, 2024
a30e1ad
remove test artificats
mbrandonw Jul 4, 2024
54945d9
wip
mbrandonw Jul 4, 2024
f18aa61
more docs
mbrandonw Jul 4, 2024
f78bb29
fix linux tests
mbrandonw Jul 4, 2024
4463f37
more test fixes
mbrandonw Jul 4, 2024
6b5147e
test clean up
mbrandonw Jul 4, 2024
a3dd71d
debugging
mbrandonw Jul 4, 2024
6031605
debug
mbrandonw Jul 4, 2024
7617c60
wip
mbrandonw Jul 4, 2024
b87309a
fix
mbrandonw Jul 4, 2024
2de533c
fix tests
mbrandonw Jul 4, 2024
ef4f24e
wip
stephencelis Jul 4, 2024
aaf6ce4
wip
stephencelis Jul 4, 2024
f98a7e7
wip
stephencelis Jul 4, 2024
30c3469
make snapshot configuration optional
mbrandonw Jul 8, 2024
50e71d5
make snapshot configuration optional
mbrandonw Jul 8, 2024
42feef6
clean up
mbrandonw Jul 8, 2024
bd68b8f
fix
mbrandonw Jul 8, 2024
3eba8e2
indent
mbrandonw Jul 8, 2024
9a5361e
typo
mbrandonw Jul 8, 2024
c4842c3
more clean up
mbrandonw Jul 8, 2024
2dc8dab
record before difftool
mbrandonw Jul 8, 2024
ea63fe0
more tests
mbrandonw Jul 8, 2024
f4227b3
clean up test code
mbrandonw Jul 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
stephencelis committed Jul 4, 2024
commit ca6f4dc77a55d283dfa340f50a28ea1ef394818e
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import XCTest

final class InlineSnapshotTestingTests: XCTestCase {
override func invokeTest() {
withSnapshotTesting(diffTool: .ksdiff, record: .missing) {
withSnapshotTesting(record: .missing, diffTool: .ksdiff) {
super.invokeTest()
}
}
Expand Down