diff --git a/cypress/helpers/util.js b/cypress/helpers/util.js index 0a52a335b..b5e64a1e8 100644 --- a/cypress/helpers/util.js +++ b/cypress/helpers/util.js @@ -42,8 +42,8 @@ export const imgSnapshotTest = (graphStr, _options, api = false, validation) => if (!options.fontSize) { options.fontSize = '16px'; } - // const useAppli = Cypress.env('useAppli'); - const useAppli = false; + const useAppli = Cypress.env('useAppli'); + //const useAppli = false; const branch = Cypress.env('codeBranch'); cy.log('Hello ' + useAppli ? 'Appli' : 'image-snapshot'); const name = (options.name || cy.state('runnable').fullTitle()).replace(/\s+/g, '-'); diff --git a/package.json b/package.json index 899a07bcc..37ce4fac9 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,11 @@ "name": "mermaid", "version": "9.1.5", "description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.", - "main": "dist/mermaid.core.js", + "main": "dist/mermaid.min.js", "module": "dist/mermaid.esm.min.mjs", "exports": { ".": { - "require": "./dist/mermaid.core.js", + "require": "./dist/mermaid.min.js", "import": "./dist/mermaid.esm.min.mjs" }, "./*": "./*" diff --git a/src/diagrams/class/classDiagram.spec.js b/src/diagrams/class/classDiagram.spec.js index 5c09f6ff8..7d196d1a9 100644 --- a/src/diagrams/class/classDiagram.spec.js +++ b/src/diagrams/class/classDiagram.spec.js @@ -14,7 +14,16 @@ describe('class diagram, ', function () { parser.parse(str); }); + xit('should handle a leading newline axa', function () { + const str = '\nclassDiagram\n' + 'class Car'; + try { + parser.parse(str); + // Fail test if above expression doesn't throw anything. + } catch (e) { + expect(true).toBe(false); + } + }); it('should handle relation definitions', function () { const str = 'classDiagram\n' +