Merge pull request #2466 from dvkruchinin/dkru/fix-cypress-test-issue-2206

Fix cypress test for check issue 2306.
main
Boris Sekachev 5 years ago committed by GitHub
commit 73220f7787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,16 +4,14 @@
/// <reference types="cypress" />
import { taskName } from '../../support/const';
import { taskName, labelName } from '../../support/const';
context('Draw a point shape, specify one point', () => {
const issueId = '2306';
const createPointsShape = {
type: 'Shape',
switchLabel: false,
pointsMap: [
{ x: 500, y: 200 },
],
labelName: labelName,
pointsMap: [{ x: 500, y: 200 }],
numberOfPoints: 1,
};

Loading…
Cancel
Save