Fixed spec checking for highlightjs class

This commit is contained in:
Phil Hughes 2017-03-23 17:24:24 +00:00
parent 32c6ea2d00
commit 68f863bdda
1 changed files with 2 additions and 2 deletions

View File

@ -76,11 +76,11 @@ describe('iPython notebook renderer', () => {
it('highlights code', () => {
expect(
document.querySelector('.hljs'),
document.querySelector('.token'),
).not.toBeNull();
expect(
document.querySelector('.python'),
document.querySelector('.language-python'),
).not.toBeNull();
});
});