@@ -2,7 +2,7 @@ import { fromPartial } from "@total-typescript/shoehorn";
22import { expect , test } from "vitest" ;
33import { sourceFilePath } from "./source-file-path.ts" ;
44
5- test ( "empty path" , async ( ) => {
5+ test ( "empty path" , ( ) => {
66 expect (
77 sourceFilePath (
88 fromPartial ( {
@@ -18,7 +18,7 @@ test("empty path", async () => {
1818 ) . toBe ( "" ) ;
1919} ) ;
2020
21- test ( "only filename" , async ( ) => {
21+ test ( "only filename" , ( ) => {
2222 expect (
2323 sourceFilePath (
2424 fromPartial ( {
@@ -34,7 +34,7 @@ test("only filename", async () => {
3434 ) . toBe ( "index.ts" ) ;
3535} ) ;
3636
37- test ( "dir and filename" , async ( ) => {
37+ test ( "dir and filename" , ( ) => {
3838 expect (
3939 sourceFilePath (
4040 fromPartial ( {
@@ -50,7 +50,7 @@ test("dir and filename", async () => {
5050 ) . toBe ( "/src/index.ts" ) ;
5151} ) ;
5252
53- test ( "node_modules, dir and filename" , async ( ) => {
53+ test ( "node_modules, dir and filename" , ( ) => {
5454 expect (
5555 sourceFilePath (
5656 fromPartial ( {
@@ -66,7 +66,7 @@ test("node_modules, dir and filename", async () => {
6666 ) . toBe ( "/src/index.ts" ) ;
6767} ) ;
6868
69- test ( "temp dir, node_modules, package dir and filename" , async ( ) => {
69+ test ( "temp dir, node_modules, package dir and filename" , ( ) => {
7070 expect (
7171 sourceFilePath (
7272 fromPartial ( {
@@ -82,7 +82,7 @@ test("temp dir, node_modules, package dir and filename", async () => {
8282 ) . toBe ( "/my-package/src/index.ts" ) ;
8383} ) ;
8484
85- test ( "temp dir, node_modules, scoped package dir and filename" , async ( ) => {
85+ test ( "temp dir, node_modules, scoped package dir and filename" , ( ) => {
8686 expect (
8787 sourceFilePath (
8888 fromPartial ( {
0 commit comments