Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from mermaid-js:master #13

Merged
merged 24 commits into from
Jul 9, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5b98232
fix #783: Add sub-resource integrity (SRI) hash to all CDN resources
jonmbake Jun 30, 2022
1c6371c
Add vitest
sidharthv96 Jul 6, 2022
e04bb15
Add dom testing
sidharthv96 Jul 6, 2022
b4fe60d
Remove mocha
sidharthv96 Jul 6, 2022
4c965fb
Cypress
sidharthv96 Jul 6, 2022
79fb9d1
Pin versions; Fix svelte kit
sidharthv96 Jul 6, 2022
0ea5d81
Fix cypress
sidharthv96 Jul 6, 2022
31de1c7
Fix security formatting.
sidharthv96 Jul 6, 2022
cab7ae5
Merge branch 'master' into vitest
sidharthv96 Jul 6, 2022
861fd44
Fix test
sidharthv96 Jul 6, 2022
1058565
Fix test
sidharthv96 Jul 6, 2022
e69b4de
Fix test
sidharthv96 Jul 6, 2022
1ab98b5
Merge pull request #878 from mermaid-js/vitest
sidharthv96 Jul 7, 2022
fb91377
chore(deps-dev): bump vitest from 0.17.0 to 0.17.1 (#880)
dependabot[bot] Jul 8, 2022
e410f77
chore(deps-dev): bump @sveltejs/kit (#882)
dependabot[bot] Jul 8, 2022
e39254d
chore(deps-dev): bump tailwindcss from 3.1.4 to 3.1.5 (#884)
dependabot[bot] Jul 8, 2022
8c37a3b
chore(deps-dev): bump svelte from 3.48.0 to 3.49.0 (#881)
dependabot[bot] Jul 8, 2022
852d426
chore(deps-dev): bump @vitest/ui from 0.17.0 to 0.17.1 (#883)
dependabot[bot] Jul 8, 2022
d7388b0
Use 'node-html-parser'
sidharthv96 Jul 8, 2022
185fd55
Merge pull request #869 from jonmbake/add-integrity-hash-sri
sidharthv96 Jul 8, 2022
67a4cff
Install deps before updating monaco
sidharthv96 Jul 8, 2022
57df1cf
Merge pull request #886 from mermaid-js/develop
sidharthv96 Jul 8, 2022
950de30
improve button to be link
johannchopin Jul 8, 2022
91c3564
Merge pull request #888 from johannchopin/feature/improve-view-button
sidharthv96 Jul 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
sidharthv96 committed Jul 6, 2022
commit e69b4def131f7c63df79e0d06ffb186aa2f0d317
4 changes: 2 additions & 2 deletions cypress/e2e/diagramUpdate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('Auto sync tests', () => {
it('should dim diagram when code is edited', () => {
cy.contains('Auto sync').click();
cy.get('#view').should('not.have.class', 'outOfSync');
getEditor().type('C --> Test');
getEditor().type(' C --> Test');
cy.get('#view').should('have.class', 'outOfSync');
cy.getLocalStorage('codeStore').snapshot();
});
Expand All @@ -32,7 +32,7 @@ describe('Auto sync tests', () => {
it('should not dim diagram when code is in sync', () => {
cy.contains('Auto sync').click();
cy.get('#view').should('not.have.class', 'outOfSync');
getEditor().type('C --> Test');
getEditor().type(' C --> Test');
cy.get('#view').should('have.class', 'outOfSync');
cy.get('[data-cy=sync]').click();
cy.get('#view').should('not.have.class', 'outOfSync');
Expand Down