Skip to content

Commit 457f1f9

Browse files
committed
cleanup
1 parent 8797cba commit 457f1f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/host/app/resources/room.ts

-4
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,6 @@ export class RoomResource extends Resource<Args> {
215215
.filter(Boolean) as Skill[];
216216
}
217217

218-
// get roomId() {
219-
// return this._previousRoomId;
220-
// }
221-
222218
@cached
223219
get created() {
224220
if (this._createEvent) {

packages/host/tests/integration/components/ai-assistant-panel-test.gts

+4
Original file line numberDiff line numberDiff line change
@@ -2638,6 +2638,10 @@ module('Integration | ai-assistant-panel', function (hooks) {
26382638
assert
26392639
.dom('button.code-copy-button')
26402640
.exists('the copy code to clipboard button exists');
2641+
2642+
// the chrome security model prevents the clipboard API
2643+
// from working when tests are run in a headless mode, so we are unable to
2644+
// assert the button actually copies contents to the clipboard
26412645
});
26422646

26432647
test('it renders codeblock in monaco', async function (assert) {

0 commit comments

Comments
 (0)