Skip to content

Commit 6935461

Browse files
committed
chore: fix e2e test i guess
1 parent 1fbc4f9 commit 6935461

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e/commands/actor/generate-schema-types.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('[e2e] actor generate-schema-types', () => {
3838
expect(result.exitCode, `stderr: ${result.stderr}`).toBe(0);
3939
expect(result.stderr).toContain('Generated types written to');
4040

41-
await expect(access(path.join(actor.dir, 'src', '.generated', 'actor', 'input.ts'))).resolves.toBeUndefined();
41+
await expect(access(path.join(actor.dir, 'src', '__generated__', 'actor', 'input.ts'))).resolves.toBeUndefined();
4242
});
4343

4444
it('respects --output flag', async () => {

0 commit comments

Comments
 (0)