Skip to content

Commit

Permalink
feat(testing-utils): stop skipping index files
Browse files Browse the repository at this point in the history
  • Loading branch information
KSXGitHub committed Nov 15, 2023
1 parent 3b2696a commit 485db26
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/testing-utils/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ pub fn get_all_files(root: &Path) -> Vec<String> {
.filter(|entry| !entry.file_type().is_dir())
.map(|entry| normalized_suffix(entry.path(), root))
.filter(|suffix| !suffix.is_empty())
.filter(|suffix| !suffix.ends_with("-index.json")) // until we have a stable fake registry, this is necessary for now
.collect()
}

Expand Down

0 comments on commit 485db26

Please sign in to comment.