Skip to content

Commit

Permalink
Merge pull request #2466 from dvkruchinin/dkru/fix-cypress-test-issue…
Browse files Browse the repository at this point in the history
…-2206

Fix cypress test for check issue 2306.
  • Loading branch information
Boris Sekachev committed Nov 19, 2020
2 parents 2ac291e + 49ce002 commit 73220f7
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down

0 comments on commit 73220f7

Please sign in to comment.