File size: 1,560 Bytes
6140987
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Test info

- Name: hello world test
- Location: C:\Users\LENOVO\DavidKRK.github.io\tests\example.spec.ts:3:5

# Error details

```
Error: expect(received).toBe(expected) // Object.is equality

Expected: "Titre de votre application"
Received: "David KRK - Techno DJ & Producer"
    at C:\Users\LENOVO\DavidKRK.github.io\tests\example.spec.ts:6:19
```

# Page snapshot

```yaml
- img "Logo David KRK"
- paragraph: "\"MAY THE TECHNO BE WITH YOU\""
- img "David KRK - Techno DJ & Producer"
- img "David KRK - Live DJ Performance"
- contentinfo:
  - img "Logo David KRK"
  - paragraph: "\"MAY THE TECHNO BE WITH YOU\""
  - link "Facebook":
    - /url: https://www.facebook.com/DavidKRKofficial
  - link "YouTube":
    - /url: https://www.youtube.com/user/DavidKRKofficial
  - link "Instagram":
    - /url: https://www.instagram.com/davidkrk/
  - link "SoundCloud":
    - /url: https://www.soundcloud.com/davidkrk
  - link "Contact David KRK":
    - /url: mailto:davidkrkofficial@gmail.com
  - paragraph: © 2025 DAVID KRK - ALL RIGHTS RESERVED
  - button "FR"
  - button "EN"
  - button "ES"
  - button "EU"
  - button "RO"
  - button "中文"
  - button "日本語"
```

# Test source

```ts
  1 | import { test, expect } from '@playwright/test';
  2 |
  3 | test('hello world test', async ({ page }) => {
  4 |     await page.goto('http://localhost:3000');
  5 |     const title = await page.title();
> 6 |     expect(title).toBe('Titre de votre application');
    |                   ^ Error: expect(received).toBe(expected) // Object.is equality
  7 | });
```