We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76460c6 commit a346d38Copy full SHA for a346d38
1 file changed
test/e2e/__helpers__/test-actor.ts
@@ -85,8 +85,5 @@ export async function removeTestActor(actor: TestActor): Promise<void> {
85
* Corrupt the actor.json to test error handling.
86
*/
87
export async function corruptActorJson(actorDir: string): Promise<void> {
88
- await writeFile(
89
- path.join(actorDir, '.actor', 'actor.json'),
90
- '{ wow "name": "my-invalid-actor" }',
91
- );
+ await writeFile(path.join(actorDir, '.actor', 'actor.json'), '{ wow "name": "my-invalid-actor" }');
92
}
0 commit comments