Skip to content

Commit 49e66bf

Browse files
committed
Split e2e-magazine test into smaller modules
1 parent b78a40d commit 49e66bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1600
-1501
lines changed

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
- Respect existing indentation style when editing files (maintain consistency with surrounding code)
1010
- Keep ternary operator `?` at the end of the line, not at the start of the next line (avoid JSHint misleading line break warning)
1111
- Respect default JSHint rules and do not change coding style in ways that cause JSHint to report warnings
12+
- Keep short destructured imports on a single line (e.g., `const { foo, bar } = require('./module')`)
13+
- Break destructured imports across multiple lines only when they exceed 80 columns or contain many items
1214

1315
## Test Assertions Formatting
1416
- Assertion function call on one line (e.g., `t.ok(`, `t.equal(`, `t.notOk(`)

0 commit comments

Comments
 (0)