Skip to content

Commit

Permalink
Remove extra expect
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Jan 11, 2024
1 parent 832af9c commit 321daac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/xdsoft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@ name: Generate site
on:
push:
branches: [main]
tags-ignore:
- '*'
pull_request:
branches: [main]
tags-ignore:
- '*'

jobs:
docs:
runs-on: ubuntu-latest

steps:
- name: Trigger generate site hook
run: |
curl -XPOST -u "${{ secrets.PAT_USERNAME}}:${{secrets.PAT_TOKEN}}" -H "Accept:application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/xdan/jodit-pro-home/dispatches --data '{"event_type": "opened" }'
- name: Trigger generate site hook
run: |
curl -XPOST -u "${{ secrets.PAT_USERNAME}}:${{secrets.PAT_TOKEN}}" -H "Accept:application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/xdan/jodit-pro-home/dispatches --data '{"event_type": "opened" }'
4 changes: 0 additions & 4 deletions test/tests/acceptance/editor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,10 +467,6 @@ describe('Jodit Editor Tests', function () {
Jodit.modules.Table
);

expect(editor.getInstance('FileBrowser')).is.instanceOf(
Jodit.modules.FileBrowser
);

expect(editor.getInstance('Ajax')).is.instanceOf(
Jodit.modules.Ajax
);
Expand Down

0 comments on commit 321daac

Please sign in to comment.