mirror of
https://github.com/fergalmoran/next-auth-aspnetcore-adapter.git
synced 2025-12-22 09:29:06 +00:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
import {fixtures} from "../fixtures";
|
|
import {AspNetIdentityAdapter} from "../../src";
|
|
import {runBasicTests} from "../.";
|
|
|
|
runBasicTests({
|
|
adapter: AspNetIdentityAdapter(fixtures.baseUrl),
|
|
fixtures,
|
|
}).then(r => {
|
|
console.log('IdentityEndpointsSample', 'Tests complete', r)
|
|
});
|