24 lines
809 B
C#
24 lines
809 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.E2ETesting;
|
|
using Templates.Test.Helpers;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Templates.Test.SpaTemplateTest
|
|
{
|
|
public class ReactReduxTemplateTest : SpaTemplateTestBase
|
|
{
|
|
public ReactReduxTemplateTest(ProjectFactoryFixture projectFactory, BrowserFixture browserFixture, ITestOutputHelper output)
|
|
: base(projectFactory, browserFixture, output)
|
|
{
|
|
}
|
|
|
|
[Fact]
|
|
public Task ReactReduxTemplate_Works_NetCore()
|
|
=> SpaTemplateImplAsync("reactredux", "reactredux",useLocalDb: false, usesAuth: false);
|
|
}
|
|
}
|