Skip to content

Commit

Permalink
test(tree): tree 组件解决单元测试未能正常执行的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
TabSpace committed Sep 18, 2021
1 parent 7eadb10 commit ebe7ed6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/unit/tree/tree-append.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as TreeStore from '../../../js/tree/tree-store.ts';
import TreeStore from '../../../js/tree/tree-store';
import { wait } from './kit';

describe('tree', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/tree/tree-checked.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as TreeStore from '../../../js/tree/tree-store.ts';
import TreeStore from '../../../js/tree/tree-store';
import { wait } from './kit';

describe('tree', () => {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/tree/tree-init.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as TreeStore from '../../../js/tree/tree-store.ts';
import * as TreeNode from '../../../js/tree/tree-node.ts';
import TreeStore from '../../../js/tree/tree-store';
import TreeNode from '../../../js/tree/tree-node';

/**
* ```bash
Expand Down

0 comments on commit ebe7ed6

Please sign in to comment.