Skip to content

Commit d2c7b02

Browse files
nonaraRon S
authored and
Ron S
committed
style: Formatting
1 parent f8a4c97 commit d2c7b02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/projects/specific/src/tags.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ export {
5858
explicitTransform1,
5959
explicitTransform2,
6060
explicitTransform3,
61-
explicitTransform4
62-
}
61+
explicitTransform4,
62+
};

test/tests/transformer/specific.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ describe(`Transformer -> Specific Cases`, () => {
7979
describe(`Tags`, () => {
8080
test(`(@no-transform-path) Doesn't transform path`, () => {
8181
const regex = /^import \* as skipTransform\d from "#root\/index"/gm;
82-
const expectedLength = tsInstance.versionMajorMinor === '3.6' ? 8 : 16;
82+
const expectedLength = tsInstance.versionMajorMinor === "3.6" ? 8 : 16;
8383
const matches = [
8484
...(normalEmit[tagFile].dts.match(regex) ?? []),
8585
...(rootDirsEmit[tagFile].dts.match(regex) ?? []),
@@ -92,7 +92,7 @@ describe(`Transformer -> Specific Cases`, () => {
9292
test(`(@transform-path) Transforms path with explicit value`, () => {
9393
const regex1 = /^import \* as explicitTransform\d from "\.\/dir\/src-file"/gm;
9494
const regex2 = /^import \* as explicitTransform\d from "http:\/\/www\.go\.com\/react\.js"/gm;
95-
const expectedLength = tsInstance.versionMajorMinor === '3.6' ? 4 : 8;
95+
const expectedLength = tsInstance.versionMajorMinor === "3.6" ? 4 : 8;
9696

9797
const matches1 = [
9898
...(normalEmit[tagFile].dts.match(regex1) ?? []),

0 commit comments

Comments
 (0)