Skip to content

Commit

Permalink
chore(subentry): fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed May 9, 2020
1 parent 460b64c commit 72b170a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/library-split/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ describe('split', () => {
const expectedSubentryConfig = {
ngPackage: {
lib: {
entryFile: 'public-api.ts'
entryFile: 'public-api.ts',
cssUrl: 'inline'
}
}
};
Expand All @@ -229,7 +230,8 @@ describe('split', () => {
const expectedSubentryConfig = {
ngPackage: {
lib: {
entryFile: 'public-api.ts'
entryFile: 'public-api.ts',
cssUrl: 'inline'
}
}
};
Expand Down
3 changes: 2 additions & 1 deletion src/subentry/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ describe('generate-subentry', () => {
const expectedContent = {
ngPackage: {
lib: {
entryFile: 'public-api.ts'
entryFile: 'public-api.ts',
cssUrl: 'inline'
}
}
};
Expand Down

0 comments on commit 72b170a

Please sign in to comment.