Skip to content

Commit

Permalink
🔇 Don't log results of getting track view properties
Browse files Browse the repository at this point in the history
  • Loading branch information
leolabs committed Nov 11, 2023
1 parent 3b58e72 commit 3b4a5bd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/ns/track-view.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ describe("Track View", () => {
it("should be able to read all properties without erroring", async () => {
await withAbleton(async (ab) => {
const tracks = await ab.song.get("tracks");
const res = await Promise.all(
gettableProps.map((p) => tracks[0].view.get(p)),
);
console.log(res);
await Promise.all(gettableProps.map((p) => tracks[0].view.get(p)));
});
});

Expand Down

0 comments on commit 3b4a5bd

Please sign in to comment.