Skip to content

Commit

Permalink
Finish renaming package
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr committed Mar 10, 2025
1 parent 0e54317 commit e90cefc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/app-player/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Import the `play` function from the "player" package.
Here's a template for getting started.

```ts
import { play } from 'player';
import { play } from 'app-player';
import { getPath } from '@brimdata/sample-data';

play('Preview & Load', (app, test) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/copy-paste.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';
import { existsSync } from 'fs';

play('Copy Paste Data', (app, test) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/packets.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';
import { getPath } from '@brimdata/sample-data';

// Timeouts are increased due to observed long pcap load times in CI.
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/preview-and-load.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';
import { getPath } from '@brimdata/sample-data';

play('Preview & Load', (app, test) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/right-click-menus.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';
import { getPath } from '@brimdata/sample-data';

play('right-click-menus', (app, test) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/set-as-from-pin.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';
import { getPath } from '@brimdata/sample-data';

play('Set As From Pin', (app, test) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/app-player/tests/title-bar-buttons.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { play } from 'player';
import { play } from 'app-player';

play('title bar buttons', (app, test) => {
test('click new tab', async () => {
Expand Down

0 comments on commit e90cefc

Please sign in to comment.