Skip to content

Commit

Permalink
test(integration): update simple test to match updated template
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayevans committed Jun 24, 2024
1 parent c3415f6 commit 8ecc905
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/integration/simple.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ describe('sscffld', () => {
);

expect(code).toBe(0);
expect(stdout.join('\n')).toContain('Wrote 5 files in');
await expect(exists('./demo-src/simple/test.css')).resolves.toBe(true);
expect(stdout.join('\n')).toContain('Wrote 3 files in');
await expect(exists('./demo-src/simple/simple.css')).resolves.toBe(true);

await cleanup();
},
Expand All @@ -41,8 +41,8 @@ describe('sscffld', () => {
);

expect(code).toBe(0);
expect(stdout.join('\n')).toContain('Wrote 5 files in');
await expect(exists('./demo-src/simple/test.css')).resolves.toBe(true);
expect(stdout.join('\n')).toContain('Wrote 3 files in');
await expect(exists('./demo-src/simple/simple.css')).resolves.toBe(true);

await cleanup();
},
Expand All @@ -61,8 +61,8 @@ describe('sscffld', () => {
);

expect(code).toBe(0);
expect(stdout.join('\n')).toContain('Wrote 5 files in');
await expect(exists('./demo-src/simple/test.css')).resolves.toBe(true);
expect(stdout.join('\n')).toContain('Wrote 3 files in');
await expect(exists('./demo-src/simple/simple.css')).resolves.toBe(true);

await cleanup();
},
Expand Down

0 comments on commit 8ecc905

Please sign in to comment.