Skip to content

Commit

Permalink
feat: fix and remove unused translations
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryT-CG committed Mar 8, 2024
1 parent 8664e11 commit 0559098
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,17 @@ describe('WorkspaceSearchComponent', () => {

it('should correctly assign results if API call returns some data', () => {
const portal: Workspace = {
id: 'id',
name: 'name',
theme: 'theme',
baseUrl: 'url',
id: 'id'
baseUrl: 'url'
}
apiServiceSpy.getAllPortals.and.returnValue(of([portal]))
component.workspaceItems = []
component.workspaces = []

component.search()

expect(component.workspaceItems[0]).toEqual(portal)
expect(component.workspaces[0]).toEqual(portal)
expect(component.sortField).toEqual('name')
})

Expand Down

0 comments on commit 0559098

Please sign in to comment.