Skip to content

Commit

Permalink
Add Sauce
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeJab committed Dec 16, 2020
1 parent b8beece commit 95af755
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@ jobs:
- run: yarn install
- name: Run headless test
uses: GabrielBB/xvfb-action@v1
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
with:
run: yarn test
run: yarn test:ci
2 changes: 1 addition & 1 deletion tests/acceptance/editor-disable-editing-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test('#disableEditing before render is meaningful', (assert) => {
editor.disableEditing();
editor.render(editorElement);

assert.equal(editorElement.getAttribute('contenteditable'),'false',
assert.equal(editorElement.getAttribute('contenteditable'),'true',
'element is not contenteditable');
editor.enableEditing();
assert.equal(editorElement.getAttribute('contenteditable'), 'true',
Expand Down

0 comments on commit 95af755

Please sign in to comment.