Skip to content

Commit

Permalink
chore: only sync gh-pages to Gitee Mirror (#1938)
Browse files Browse the repository at this point in the history
* chore: only sync gh-pages to Gitee Mirror

* chore: remove unused import
  • Loading branch information
hustcc authored Nov 18, 2020
1 parent 9b7b189 commit e0a1e9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: 🤖 Sync to Gitee Mirror

on: [push]
on:
push:
branches:
- gh-pages

jobs:
build:
Expand Down
1 change: 0 additions & 1 deletion __tests__/unit/plots/multi-view/index-spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Lab } from '../../../../src';
import { createDiv } from '../../../utils/dom';
import { partySupport } from '../../../data/party-support';
import { annotation } from '../../../../src/adaptor/common';

describe('multi-view', () => {
it('simple line', () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/unit/plots/stock/tooltip-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('Stock tooltip', () => {
expect(k.chart.options.tooltip).toBe(false);
expect(k.chart.getComponents().find((co) => co.type === 'tooltip')).toBe(undefined);

// k.destroy();
k.destroy();
});

it('tooltip: custom crosshairs', () => {
Expand Down

0 comments on commit e0a1e9d

Please sign in to comment.