Skip to content
Merged
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
7 changes: 3 additions & 4 deletions test/common/markdown/markdown-link.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Copyright (c) Microsoft Corporation. All rights reserved.
Copy link
Collaborator

@iSazonov iSazonov Jul 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is changed here? BOM? All file should be UTF8 without BOM.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was some kind of red dot, I got rid of it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see that the file had BOM before the fix.

# Licensed under the MIT License.

Describe "Verify Markdown Links" {
BeforeAll {
# WARNING: Keep markdown-link-check pinned at 3.7.2 OR ELSE...
if(!(Get-Command -Name 'markdown-link-check' -ErrorAction SilentlyContinue))
{
Write-Verbose "installing markdown-link-check ..." -Verbose
start-nativeExecution {
sudo yarn global add markdown-link-check@3.7.2
}
sudo yarn global add markdown-link-check@3.7.2
}
}

if(!(Get-Module -Name 'ThreadJob' -ListAvailable -ErrorAction SilentlyContinue))
Expand Down