jsketcher/test/cypress/integration/part3d/partImport.spec.ts
2020-05-30 19:30:05 -07:00

13 lines
273 B
TypeScript

describe("Part Import", () => {
beforeEach(() => {
cy.openModeller();
});
it("import from web-cad.org smoke test", () => {
cy.getActionButton('IMPORT_PART').click();
cy.get('.wizard').should('have.attr', 'data-operation-id', 'IMPORT_PART');
});
});