Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed Oct 14, 2024
1 parent dc7c3b0 commit 5ecb453
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/proxyMap.bench.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/* eslint-disable vitest/consistent-test-it */
/* eslint-disable import/extensions */
import { bench, describe } from 'vitest'
import { proxyMap as newProxyMap } from '../src/vanilla/utils/proxyMap-indexMap-filled'
import { proxyMap as newProxyMapKeyVals } from '../src/vanilla/utils/proxyMap-indexMap-keyvals'
import { proxyMap as newProxyMapRawMap } from '../src/vanilla/utils/proxyMap-rawMap'
import { proxyMap as newProxyMapTree1 } from '../src/vanilla/utils/proxyMap-tree1'
import { proxyMap as newProxyMap } from '../src/vanilla/utils/proxyMap-indexMap-filled.ts'

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.7.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-filled.js' instead.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.4.5)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.3.3)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.6.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-filled.js' instead.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.2.2)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.5.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.8.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-filled.js' instead.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.1.6)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.0.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.9.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-filled.js' instead.

Check failure on line 4 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.5.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-filled.js' instead.
import { proxyMap as newProxyMapKeyVals } from '../src/vanilla/utils/proxyMap-indexMap-keyvals.ts'

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.7.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-keyvals.js' instead.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.4.5)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.3.3)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.6.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-keyvals.js' instead.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.2.2)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.5.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.8.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-keyvals.js' instead.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.1.6)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.0.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.9.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-keyvals.js' instead.

Check failure on line 5 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.5.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-indexMap-keyvals.js' instead.
import { proxyMap as newProxyMapRawMap } from '../src/vanilla/utils/proxyMap-rawMap.ts'

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.7.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-rawMap.js' instead.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.4.5)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.3.3)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.6.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-rawMap.js' instead.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.2.2)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.5.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.8.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-rawMap.js' instead.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.1.6)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.0.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.9.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-rawMap.js' instead.

Check failure on line 6 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.5.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-rawMap.js' instead.
import { proxyMap as newProxyMapTree1 } from '../src/vanilla/utils/proxyMap-tree1.ts'

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.7.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-tree1.js' instead.

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.6.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-tree1.js' instead.

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (5.5.4)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.8.4)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-tree1.js' instead.

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.9.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-tree1.js' instead.

Check failure on line 7 in tests/proxyMap.bench.ts

View workflow job for this annotation

GitHub Actions / test_matrix (4.5.5)

An import path cannot end with a '.ts' extension. Consider importing '../src/vanilla/utils/proxyMap-tree1.js' instead.

// Helper function to generate test data
function generateTestData(size: number): [number, number][] {
Expand Down

0 comments on commit 5ecb453

Please sign in to comment.