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

Initial APIs for FileSystem extensions #1470

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
No FS tests on Wasm
  • Loading branch information
swankjesse committed Apr 20, 2024
commit 5325b962ba5964c4ea21df5a92e4b7c067701e38
3 changes: 2 additions & 1 deletion okio/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ kotlin {
dependencies {
implementation(libs.kotlin.test)
implementation(projects.okioTestingSupport)
implementation(projects.okioFakefilesystem)
}
}

Expand All @@ -80,7 +79,9 @@ kotlin {

val nonWasmTest by creating {
dependencies {
implementation(libs.kotlin.test)
implementation(libs.kotlin.time)
implementation(projects.okioFakefilesystem)
}
}

Expand Down
Loading