Skip to content

Commit de3ae93

Browse files
committed
Format
1 parent 2cb4950 commit de3ae93

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

e2e/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2-
"workspaces": ["fixtures/*"],
2+
"workspaces": [
3+
"fixtures/*"
4+
],
35
"type": "module"
4-
}
6+
}

e2e/run-all-tests.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ const executeAllE2eTests = async () => {
3333
});
3434

3535
// Get all directories in the e2e dir
36-
const allFixtureFiles = await fs.readdir(fixturesDir, { withFileTypes: true });
36+
const allFixtureFiles = await fs.readdir(fixturesDir, {
37+
withFileTypes: true,
38+
});
3739
const testDirs = allFixtureFiles
3840
.filter((dirEnt) => dirEnt.isDirectory())
3941
.map((dirEnt) => path.join(dirEnt.parentPath, dirEnt.name));
4042

4143
if (testDirs.length > 0) {
42-
console.log(`Running ${testDirs.length} end to end tests.`)
44+
console.log(`Running ${testDirs.length} end to end tests.`);
4345
console.log(`\n${'-'.repeat(50)}\n`);
4446
} else {
4547
console.log('No end-to-end tests found...');

eslint.config.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ const compat = new FlatCompat({
1818
export default tseslint.config([
1919
// Global ignores
2020
{
21-
ignores: ['node_modules', 'coverage', 'dist', 'tests/lib/fixtures', 'e2e/fixtures'],
21+
ignores: [
22+
'node_modules',
23+
'coverage',
24+
'dist',
25+
'tests/lib/fixtures',
26+
'e2e/fixtures',
27+
],
2228
},
2329
// Global settings
2430
{

0 commit comments

Comments
 (0)