Add trash view
[arvados-workbench2.git] / src / services / trash-service / trash-service.test.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { GroupsService } from "../groups-service/groups-service";
6 import { TrashService } from "./trash-service";
7 import { mockResourceService } from "~/common/api/common-resource-service.test";
8
9 describe("TrashService", () => {
10
11     let groupService: GroupsService;
12
13     beforeEach(() => {
14         groupService = mockResourceService(GroupsService);
15     });
16
17 });