mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-27 10:55:56 +01:00
13 lines
273 B
TypeScript
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');
|
|
|
|
});
|
|
});
|