Skip to content

Commit

Permalink
refactor: flatten libs
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoslig committed Dec 6, 2024
1 parent 35944df commit 8c0d9fa
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions libs/profile/data-access/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './lib/resolvers/profile-articles-resolver';
export * from './lib/resolvers/profile-favorites-resolver';
export * from './lib/resolvers/profile-resolver';
export * from './lib/profile.store';
export * from './resolvers/profile-articles-resolver';
export * from './resolvers/profile-favorites-resolver';
export * from './resolvers/profile-resolver';
export * from './profile.store';
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { inject, TestBed } from '@angular/core/testing';

import { ArticleStore } from './article.store';
import { ProfileStore } from './profile.store';

describe('ArticleStore', () => {
describe('ProfileStore', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
providers: [ArticleStore],
providers: [ProfileStore],
});
});

it('should be created', inject([ArticleStore], (service: typeof ArticleStore) => {
it('should be created', inject([ProfileStore], (service: typeof ProfileStore) => {
expect(service).toBeTruthy();
}));
});
2 changes: 1 addition & 1 deletion libs/ui/components/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/pager/pager.component';
export * from './pager/pager.component';

0 comments on commit 8c0d9fa

Please sign in to comment.