Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/@aws-cdk/lazify/test/no-double-getter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path';
import { transformFileContents } from '../lib';

// Write a .js file in this directory that will be imported by tests below (make it work on Windows).
let someModulePath = path.join(__dirname, 'some-module.js').replace(/\\/g, '/');
const someModulePath = path.join(__dirname, 'no-double-getter-import.js').replace(/\\/g, '/');
beforeEach(async () => {
await fs.writeFile(someModulePath, [
'Object.defineProperty(module.exports, "foo", {',
Expand Down
Loading