Skip to content

Commit

Permalink
Plus nécessaire
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Feb 24, 2025
1 parent 701a8b2 commit 39c2329
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion test/recherche/motClef.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("Rechercher mots clefs", function () {
let client: Constellation;

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down
2 changes: 1 addition & 1 deletion test/recherche/nuée.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("Nuées", function () {
let client: Constellation;

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down
8 changes: 4 additions & 4 deletions test/recherche/profil.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe("Rechercher profil", function () {
>();

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down Expand Up @@ -101,7 +101,7 @@ describe("Rechercher profil", function () {
>();

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down Expand Up @@ -162,7 +162,7 @@ describe("Rechercher profil", function () {
>();

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down Expand Up @@ -219,7 +219,7 @@ describe("Rechercher profil", function () {
>();

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down
14 changes: 7 additions & 7 deletions test/recherche/recherche.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if (isElectronMain || isNode) {
let idsComptes: string[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 3,
créerConstellation,
Expand Down Expand Up @@ -316,7 +316,7 @@ if (isElectronMain || isNode) {
let clients: Constellation[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 2,
créerConstellation,
Expand Down Expand Up @@ -457,7 +457,7 @@ if (isElectronMain || isNode) {
let clients: Constellation[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 2,
créerConstellation,
Expand Down Expand Up @@ -661,7 +661,7 @@ if (isElectronMain || isNode) {
let clients: Constellation[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 2,
créerConstellation,
Expand Down Expand Up @@ -979,7 +979,7 @@ if (isElectronMain || isNode) {
let clients: Constellation[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 2,
créerConstellation,
Expand Down Expand Up @@ -1297,7 +1297,7 @@ if (isElectronMain || isNode) {
let clients: Constellation[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 2,
créerConstellation,
Expand Down Expand Up @@ -1694,7 +1694,7 @@ describe.skip("Test fonctionnalités recherche", function () {
let idsComptes: string[];

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 5,
créerConstellation,
Expand Down
2 changes: 1 addition & 1 deletion test/recherche/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("Utils recherche", function () {
let client: Constellation;

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down
2 changes: 1 addition & 1 deletion test/recherche/variable.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("Rechercher variables", function () {
let client: Constellation;

before(async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await générerClientsInternes({
n: 1,
}));
Expand Down
2 changes: 1 addition & 1 deletion test/variables.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe("Variables", function () {
let client: Constellation;

before("Préparer clients", async () => {
({ fOublier: fOublierClients, clients: clients as unknown } =
({ fOublier: fOublierClients, clients } =
await créerConstellationsTest({
n: 1,
créerConstellation,
Expand Down

0 comments on commit 39c2329

Please sign in to comment.