1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

Add support for jsx/tsx for deno test (#4369)

This commit is contained in:
Kitson Kelly 2020-03-14 23:23:53 +11:00 committed by GitHub
parent d6bbbdda75
commit ba687125e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,11 +13,17 @@ fn is_supported(p: &Path) -> bool {
if let Some(Component::Normal(basename_os_str)) = p.components().next_back() { if let Some(Component::Normal(basename_os_str)) = p.components().next_back() {
let basename = basename_os_str.to_string_lossy(); let basename = basename_os_str.to_string_lossy();
basename.ends_with("_test.ts") basename.ends_with("_test.ts")
|| basename.ends_with("_test.tsx")
|| basename.ends_with("_test.js") || basename.ends_with("_test.js")
|| basename.ends_with("_test.jsx")
|| basename.ends_with(".test.ts") || basename.ends_with(".test.ts")
|| basename.ends_with(".test.tsx")
|| basename.ends_with(".test.js") || basename.ends_with(".test.js")
|| basename.ends_with(".test.jsx")
|| basename == "test.ts" || basename == "test.ts"
|| basename == "test.tsx"
|| basename == "test.js" || basename == "test.js"
|| basename == "test.jsx"
} else { } else {
false false
} }
@ -108,11 +114,17 @@ mod tests {
#[test] #[test]
fn test_is_supported() { fn test_is_supported() {
assert!(is_supported(Path::new("tests/subdir/foo_test.ts"))); assert!(is_supported(Path::new("tests/subdir/foo_test.ts")));
assert!(is_supported(Path::new("tests/subdir/foo_test.tsx")));
assert!(is_supported(Path::new("tests/subdir/foo_test.js"))); assert!(is_supported(Path::new("tests/subdir/foo_test.js")));
assert!(is_supported(Path::new("tests/subdir/foo_test.jsx")));
assert!(is_supported(Path::new("bar/foo.test.ts"))); assert!(is_supported(Path::new("bar/foo.test.ts")));
assert!(is_supported(Path::new("bar/foo.test.tsx")));
assert!(is_supported(Path::new("bar/foo.test.js"))); assert!(is_supported(Path::new("bar/foo.test.js")));
assert!(is_supported(Path::new("bar/foo.test.jsx")));
assert!(is_supported(Path::new("foo/bar/test.js"))); assert!(is_supported(Path::new("foo/bar/test.js")));
assert!(is_supported(Path::new("foo/bar/test.jsx")));
assert!(is_supported(Path::new("foo/bar/test.ts"))); assert!(is_supported(Path::new("foo/bar/test.ts")));
assert!(is_supported(Path::new("foo/bar/test.tsx")));
assert!(!is_supported(Path::new("README.md"))); assert!(!is_supported(Path::new("README.md")));
assert!(!is_supported(Path::new("lib/typescript.d.ts"))); assert!(!is_supported(Path::new("lib/typescript.d.ts")));
assert!(!is_supported(Path::new("notatest.js"))); assert!(!is_supported(Path::new("notatest.js")));