We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf66a0f + 96e15fe commit 677c5f9Copy full SHA for 677c5f9
.gitignore
@@ -10,7 +10,7 @@ coverage.xml
10
*.swp
11
*.swo
12
.phpunit.cache
13
-
+.temp
14
# Playwright
15
node_modules/
16
/test-results/
.temp/e2e/.gitkeep
.temp/e2e/runtime.spec.js
src/PendingTest.php
@@ -35,9 +35,9 @@ public function toHaveTitle(string $title): self
35
}
36
37
/**
38
- * Build the test result.
+ * Compile the JavaScript test file.
39
*/
40
- public function build(): void
+ public function compile(): void
41
{
42
$compiler = new Compiler($this->operations);
43
@@ -55,6 +55,6 @@ public function build(): void
55
56
public function __destruct()
57
58
- $this->build();
+ $this->compile();
59
60
0 commit comments