-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
962 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,12 @@ jobs: | |
distribution: 'zulu' | ||
java-version: 11 | ||
|
||
# For watchOS x86 simulator. Remove with Kotlin 1.8. | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
if: matrix.os == 'macos-latest' | ||
with: | ||
xcode-version: '13.4.1' | ||
|
||
- name: build | ||
uses: gradle/[email protected] | ||
if: matrix.os != 'windows-latest' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// This file was automatically generated from ${file.name} by Knit tool. Do not edit. | ||
package ${test.package} | ||
|
||
import io.kotest.core.spec.style.StringSpec | ||
|
||
class ${test.name} : StringSpec({ | ||
<#list cases as case> | ||
"${case.name}" { | ||
${case.knit.package}.${case.knit.name}.test() | ||
} | ||
|
||
</#list> | ||
}) { | ||
override fun timeout(): Long = 1000 | ||
} |
Oops, something went wrong.