webpack/test/configCases/deprecations/chunk-and-module/index.js

8 lines
181 B
JavaScript

import { testExport as importedTestExport } from "./index";
export const testExport = 42;
it("should compile with deprecations", () => {
expect(importedTestExport).toBe(42);
});