Skip to content

Commit cfa09a4

Browse files
author
Tiago Azevedo
committed
Remove cursor
1 parent cb7b996 commit cfa09a4

File tree

8 files changed

+4
-156
lines changed

8 files changed

+4
-156
lines changed

spec/unit/client/module.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ describe('Client module', () => {
1212
assert.isObject(client);
1313
});
1414

15-
it('includes client and shared modules', () => {
16-
assert.isDefined(client.cursor);
15+
xit('includes client and shared modules', () => {
1716
});
1817
});

spec/unit/server/module.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ describe('Server module', () => {
1212
assert.isObject(server);
1313
});
1414

15-
it('includes server and shared modules', () => {
16-
assert.isDefined(server.cursor);
15+
xit('includes server and shared modules', () => {
1716
});
1817
});

spec/unit/shared/.gitkeep

Whitespace-only changes.

spec/unit/shared/cursor.js

-95
This file was deleted.

src/client/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
the main entrypoint for an arch frontend application
44
*/
55

6-
import cursor from '../shared/cursor';
7-
8-
export default { cursor } ;
6+
export default { } ;

src/server/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
the main entrypoint for an arch server
44
*/
55

6-
import cursor from '../shared/cursor';
7-
8-
export default { cursor };
6+
export default { };

src/shared/.gitkeep

Whitespace-only changes.

src/shared/cursor.js

-51
This file was deleted.

0 commit comments

Comments
 (0)