Commit 68f863bd authored by Phil Hughes's avatar Phil Hughes

Fixed spec checking for highlightjs class

parent 32c6ea2d
...@@ -76,11 +76,11 @@ describe('iPython notebook renderer', () => { ...@@ -76,11 +76,11 @@ describe('iPython notebook renderer', () => {
it('highlights code', () => { it('highlights code', () => {
expect( expect(
document.querySelector('.hljs'), document.querySelector('.token'),
).not.toBeNull(); ).not.toBeNull();
expect( expect(
document.querySelector('.python'), document.querySelector('.language-python'),
).not.toBeNull(); ).not.toBeNull();
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment