We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86dae61 commit 2946c06Copy full SHA for 2946c06
test/e2e/vue.test.js
@@ -171,9 +171,9 @@ describe('Vue.js Compatibility', function() {
171
docsifyInitConfig.scriptURLs = vueURL;
172
173
await docsifyInit(docsifyInitConfig);
174
- await expect(page).toEqualText('#vuefor', '{{ i }}');
+ await expect(page).toEqualText('#vuefor', '12345');
175
await expect(page).toEqualText('#vuecomponent', '0');
176
- await expect(page).toEqualText('#vueglobaloptions p', '---');
+ expect(await page.innerText('#vueglobaloptions p')).toBe('');
177
await expect(page).toEqualText('#vuemountoptions p', 'vuemountoptions');
178
await expect(page).toEqualText('#vuescript p', 'vuescript');
179
});
0 commit comments