Only bundle the release build, and don't import src in tests (#13978)

* Only bundle the release build, and don't import `src` in tests

* Use file extension to signal skipping

* Remove unnecessary config change

* Fix imports
This commit is contained in:
Nicolò Ribaudo
2021-11-24 16:08:53 +01:00
committed by GitHub
parent 75996cb62b
commit ad1798ed48
12 changed files with 28 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
import {
isKeyword,
keywordRelationalOperator,
} from "../../../src/util/identifier.js";
} from "../../../lib/util/identifier.js";
describe("identifier", () => {
describe("isKeyword", () => {

View File

@@ -1,4 +1,4 @@
import { getLineInfo } from "../../../src/util/location.js";
import { getLineInfo } from "../../../lib/util/location.js";
describe("getLineInfo", () => {
const input = "a\nb\nc\nd\ne\nf\ng\nh\ni";