Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function getChartData(analyzerOpts, ...args) {
try {
chartData = analyzer.getViewerData(...args, analyzerOpts);
} catch (err) {
logger.error(`Could't analyze webpack bundle:\n${err}`);
logger.error(`Couldn't analyze webpack bundle:\n${err}`);
logger.debug(err.stack);
chartData = null;
}
Expand All @@ -195,7 +195,7 @@ function getChartData(analyzerOpts, ...args) {
chartData
&& !Array.isArray(chartData)
) {
logger.error("Could't find any javascript bundles in provided stats file");
logger.error("Couldn't find any javascript bundles in provided stats file");
chartData = null;
}

Expand Down
2 changes: 1 addition & 1 deletion test/analyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe('Analyzer', function () {
);
});

it.skip("should not filter out modules that we could't find during parsing", async function () {
it.skip("should not filter out modules that we couldn't find during parsing", async function () {
generateReportFrom('with-missing-parsed-module/stats.json');
const chartData = await getChartData();
let unparsedModules = 0;
Expand Down