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 ac8a0d2 commit 8918467Copy full SHA for 8918467
cypress/e2e/teams/index.cy.js
@@ -13,6 +13,11 @@ const TEAMS_COUNT = 35
13
const teams = generateSequenceArray(TEAMS_COUNT, 1).map((i) => ({
14
id: i,
15
name: `Team ${addZeroPadding(i, 3)}`,
16
+ location: {
17
+ type: 'Point',
18
+ // Fake coords under 30 degrees
19
+ coordinates: [(30 / TEAMS_COUNT) * i, (30 / TEAMS_COUNT) * i],
20
+ },
21
}))
22
23
describe('Teams page', () => {
0 commit comments