Skip to content

Commit

Permalink
Update EndToEnd.tests.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonWeber committed Feb 2, 2024
1 parent 3f969ef commit b138f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/EndToEnd.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ describe("EndToEnd", () => {
writeFileSync = sandbox.stub(fs, 'writeFileSync');
existsSync = sandbox.stub(fs, 'existsSync').returns(true);
readdir = sandbox.stub(FileSystemHelper, 'readdirAsync').returns(['1.ai.json']);
readdirSync = sandbox.stub(fs, 'readdirSync').returns(['.ai.json']);
readdirSync = sandbox.stub(fs, 'readdirSync').returns(['1.ai.json']);
stat = sandbox.stub(FileSystemHelper, 'statAsync').returns({ isFile: () => true, size: 8000 });
statSync = sandbox.stub(fs, 'statSync').returns({ isFile: () => true, size: 8000 });
lstat = sandbox.stub(FileSystemHelper, 'lstatAsync').returns({ isDirectory: () => true });
Expand Down

0 comments on commit b138f67

Please sign in to comment.