We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67cacef commit 68996c0Copy full SHA for 68996c0
test/commands/run.test.ts
@@ -267,14 +267,14 @@ describe('apify run', () => {
267
expect(existsSync(joinPath(getLocalRequestQueuePath()))).toStrictEqual(false);
268
});
269
270
- it('run with purge works without storage folder', async () => {
+ it.only('run with purge works without storage folder', async () => {
271
await rimrafPromised(getLocalStorageDir());
272
273
writeFileSync(
274
joinPath('src/main.js'),
275
`
276
import { writeFileSync } from 'node:fs';
277
-writeFileSync('${joinPath('result.txt')}', 'hello world');
+writeFileSync(String.raw\`${joinPath('result.txt')}\`, 'hello world');
278
`,
279
{ flag: 'w' },
280
);
0 commit comments