telamonian 4 سال پیش
والد
کامیت
9818614c02
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 2 2
      packages/notebook/test/actions.spec.ts
  2. 1 1
      packages/rendermime/test/factories.spec.ts

+ 2 - 2
packages/notebook/test/actions.spec.ts

@@ -625,7 +625,7 @@ describe('@jupyterlab/notebook', () => {
     });
 
     describe('#runAndAdvance()', () => {
-      it('should run the selected cells ', async () => {
+      it('should run the selected cells', async () => {
         const next = widget.widgets[1] as MarkdownCell;
         widget.select(next);
         const cell = widget.activeCell as CodeCell;
@@ -742,7 +742,7 @@ describe('@jupyterlab/notebook', () => {
     });
 
     describe('#runAndInsert()', () => {
-      it('should run the selected cells ', async () => {
+      it('should run the selected cells', async () => {
         const next = widget.widgets[1] as MarkdownCell;
         widget.select(next);
         const cell = widget.activeCell as CodeCell;

+ 1 - 1
packages/rendermime/test/factories.spec.ts

@@ -248,7 +248,7 @@ describe('rendermime/factories', () => {
         expect(w.node.innerHTML).toBe(source);
       });
 
-      it('it should be re-renderable', async () => {
+      it('should be re-renderable', async () => {
         const f = markdownRendererFactory;
         const source = '<p>hello</p>';
         const mimeType = 'text/markdown';