Skip to content

Commit 83e3521

Browse files
Fix network test (#8009)
1 parent 42286fb commit 83e3521

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

e2e/playwright/test-network-and-connection-issues.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,9 @@ test.describe('Test network related behaviors', () => {
242242
243243
244244
sketch001 = startSketchOn(XZ)
245-
profile001 = startProfile(sketch001, at = [12.34, -12.34])
245+
profile001 = startProfile(sketch001, at = [-12.34, -12.34])
246246
|> xLine(length = 12.34)
247+
profile002 = startProfile(sketch001, at = [12.34, -12.34])
247248
|> line(end = [-12.34, 12.34])
248249
249250
`)
@@ -256,8 +257,9 @@ profile001 = startProfile(sketch001, at = [12.34, -12.34])
256257
257258
258259
sketch001 = startSketchOn(XZ)
259-
profile001 = startProfile(sketch001, at = [12.34, -12.34])
260+
profile001 = startProfile(sketch001, at = [-12.34, -12.34])
260261
|> xLine(length = 12.34)
262+
profile002 = startProfile(sketch001, at = [12.34, -12.34])
261263
|> line(end = [-12.34, 12.34])
262264
|> xLine(length = -12.34)
263265

e2e/playwright/test-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ export const PERSIST_MODELING_CONTEXT = 'persistModelingContext'
5858
export const deg = (Math.PI * 2) / 360
5959

6060
export const commonPoints = {
61-
startAt: '[7.19, -9.7]',
62-
num1: 7.25,
61+
startAt: '[-12.99, -10.63]',
62+
num1: 8.2,
6363
num2: 14.44,
6464
/** The Y-value of a common lineTo move we perform in tests */
6565
num3: -2.44,

0 commit comments

Comments
 (0)