mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-06 15:30:30 +08:00
fix(build): Fix build tests.
This commit is contained in:
parent
f8d6665a01
commit
417f5cb004
@ -62,7 +62,6 @@ test('addDefaultPages, no pages array', async () => {
|
||||
},
|
||||
id: 'home',
|
||||
properties: {
|
||||
icon: 'HomeOutlined',
|
||||
title: 'Go to home page',
|
||||
type: 'Link',
|
||||
},
|
||||
@ -109,7 +108,6 @@ test('addDefaultPages, empty pages array', async () => {
|
||||
},
|
||||
id: 'home',
|
||||
properties: {
|
||||
icon: 'HomeOutlined',
|
||||
title: 'Go to home page',
|
||||
type: 'Link',
|
||||
},
|
||||
@ -160,7 +158,6 @@ test('addDefaultPages, pages without 404 page', async () => {
|
||||
},
|
||||
id: 'home',
|
||||
properties: {
|
||||
icon: 'HomeOutlined',
|
||||
title: 'Go to home page',
|
||||
type: 'Link',
|
||||
},
|
||||
|
@ -38,6 +38,7 @@ test('buildAuth default', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'a', type: 'Context', auth: { public: true } },
|
||||
@ -59,6 +60,7 @@ test('buildAuth no pages', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
});
|
||||
});
|
||||
@ -89,6 +91,7 @@ test('buildAuth all protected, some public', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'a', type: 'Context', auth: { public: true } },
|
||||
@ -124,6 +127,7 @@ test('buildAuth all public, some protected', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'a', type: 'Context', auth: { public: false } },
|
||||
@ -159,6 +163,7 @@ test('buildAuth all public', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'a', type: 'Context', auth: { public: true } },
|
||||
@ -194,6 +199,7 @@ test('buildAuth all protected', async () => {
|
||||
roles: {},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'a', type: 'Context', auth: { public: false } },
|
||||
@ -233,6 +239,7 @@ test('buildAuth roles', async () => {
|
||||
},
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [
|
||||
{ id: 'page1', type: 'Context', auth: { public: false, roles: ['role1', 'role2'] } },
|
||||
@ -288,6 +295,7 @@ test('buildAuth roles and protected pages array', async () => {
|
||||
protected: ['page1'],
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [{ id: 'page1', type: 'Context', auth: { public: false, roles: ['role1'] } }],
|
||||
});
|
||||
@ -319,6 +327,7 @@ test('buildAuth roles and protected true', async () => {
|
||||
protected: true,
|
||||
},
|
||||
},
|
||||
theme: {},
|
||||
},
|
||||
pages: [{ id: 'page1', type: 'Context', auth: { public: false, roles: ['role1'] } }],
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user