summaryrefslogtreecommitdiff
path: root/source/helpers/calculate-css-calc-string.test.ts
diff options
context:
space:
mode:
authorGravatar Federico Brigante <me@fregante.com> 2023-05-04 23:22:17 +0800
committerGravatar GitHub <noreply@github.com> 2023-05-04 23:22:17 +0800
commitb6dc0edc94cebdee74d67f5919f46c28cd96b9f8 (patch)
treeef97add33058dd7f65e662f402cf7ce24b7482e8 /source/helpers/calculate-css-calc-string.test.ts
parent0f0d7435a649466084fab40bb7fe0481b0c73dba (diff)
downloadrefined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.gz
refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.zst
refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.zip
Lint (ESM file imports + named functions) (#6613)
Diffstat (limited to 'source/helpers/calculate-css-calc-string.test.ts')
-rw-r--r--source/helpers/calculate-css-calc-string.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/helpers/calculate-css-calc-string.test.ts b/source/helpers/calculate-css-calc-string.test.ts
index c3d86439..fb670a37 100644
--- a/source/helpers/calculate-css-calc-string.test.ts
+++ b/source/helpers/calculate-css-calc-string.test.ts
@@ -1,6 +1,6 @@
import {test, assert} from 'vitest';
-import calculateCssCalcString from './calculate-css-calc-string';
+import calculateCssCalcString from './calculate-css-calc-string.js';
test('calculateCssCalcString', () => {
assert.equal(calculateCssCalcString('calc(1px)'), 1);