Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gynt committed Dec 2, 2024
1 parent 1c1234a commit e9058cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ describe('attemptStrategies', () => {
if (strategyResult.status === 'error') {
expect(strategyResult.code).toBe('MISSING_DEPENDENCIES_OR_WRONG_ORDER');
if (strategyResult.code === 'MISSING_DEPENDENCIES_OR_WRONG_ORDER') {
expect(strategyResult.dependencies.join('\n')).toBe('');
expect(strategyResult.dependencies.join('\n')).toBe('graphicsApiReplacer');
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ describe('attemptStrategies', () => {
if (strategyResult.status === 'error') {
expect(strategyResult.code).toBe('MISSING_DEPENDENCIES_OR_WRONG_ORDER');
if (strategyResult.code === 'MISSING_DEPENDENCIES_OR_WRONG_ORDER') {
expect(strategyResult.dependencies.join('\n')).toBe('');
expect(strategyResult.dependencies.join('\n')).toBe('graphicsApiReplacer');
}
}
});
Expand Down

0 comments on commit e9058cb

Please sign in to comment.