-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
options.logoMaskable (string, array)
- Loading branch information
Showing
8 changed files
with
482 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import test from 'ava'; | ||
import * as path from 'path'; | ||
import FaviconsWebpackPlugin from '../src/index.js'; | ||
import { | ||
logo, | ||
logoMaskable, | ||
generate, | ||
withTempDirectory, | ||
snapshotCompilationAssets, | ||
} from './_util.mjs'; | ||
|
||
withTempDirectory(test); | ||
|
||
test('should generate the expected default result', async (t) => { | ||
const dist = path.join(t.context.root, 'dist'); | ||
const compilationStats = await generate({ | ||
context: t.context.root, | ||
output: { | ||
path: dist, | ||
}, | ||
plugins: [new FaviconsWebpackPlugin({ logo, logoMaskable })], | ||
}); | ||
|
||
snapshotCompilationAssets(t, compilationStats); | ||
}); |
Oops, something went wrong.