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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<WarningsAsErrors></WarningsAsErrors>
<DefaultItemExcludes>**</DefaultItemExcludes>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions test/Azure.Functions.Cli.Tests/E2E/InitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public Task init_with_worker_runtime(string workerRuntime)

return CliTester.Run(new RunConfiguration
{
Commands = new[] { $"init . --worker-runtime {workerRuntime}" },
Commands = new[] { $"init . --worker-runtime {workerRuntime} --skip-npm-install" },
CheckFiles = files.ToArray(),
OutputContains = new[]
{
Expand Down Expand Up @@ -543,7 +543,7 @@ public Task javascript_adds_packagejson()
{
return CliTester.Run(new RunConfiguration
{
Commands = new[] { "init . --worker-runtime node" },
Commands = new[] { "init . --worker-runtime node --skip-npm-install" },
CheckFiles = new FileResult[]
{
new FileResult
Expand Down