Skip to content

Commit 2905015

Browse files
committed
Refactored PropSpec into org.scalatest.propspec package.
1 parent ed4d89d commit 2905015

14 files changed

+1233
-1142
lines changed

project/GenScalaTestJS.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ object GenScalaTestJS {
221221
copyDir("scalatest/src/main/scala/org/scalatest/freespec", "org/scalatest/freespec", targetDir, List.empty) ++
222222
copyDir("scalatest/src/main/scala/org/scalatest/flatspec", "org/scalatest/flatspec", targetDir, List.empty) ++
223223
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
224+
copyDir("scalatest/src/main/scala/org/scalatest/propspec", "org/scalatest/propspec", targetDir, List.empty) ++
224225
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,
225226
List(
226227
"Waiters.scala", // skipeed because doesn't really make sense on js's single-thread environment.

project/GenScalaTestNative.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@ object GenScalaTestNative {
218218
asyncs("scalatest/src/main/scala/org/scalatest/flatspec")
219219
) ++
220220
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
221+
copyDir("scalatest/src/main/scala/org/scalatest/propspec", "org/scalatest/propspec", targetDir,
222+
asyncs("scalatest/src/main/scala/org/scalatest/propspec")
223+
) ++
221224
copyDir("scalatest/src/main/scala/org/scalatest/concurrent", "org/scalatest/concurrent", targetDir,
222225
List(
223226
"Waiters.scala", // skipeed because doesn't really make sense on js's single-thread environment.

0 commit comments

Comments
 (0)