Skip to content

Commit 677c5f9

Browse files
authored
Merge pull request #5 from ijpatricio/feat/consistent-method-name
Consistent method name. Git ignore .temp folder.
2 parents bf66a0f + 96e15fe commit 677c5f9

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ coverage.xml
1010
*.swp
1111
*.swo
1212
.phpunit.cache
13-
13+
.temp
1414
# Playwright
1515
node_modules/
1616
/test-results/

.temp/e2e/.gitkeep

Whitespace-only changes.

.temp/e2e/runtime.spec.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/PendingTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ public function toHaveTitle(string $title): self
3535
}
3636

3737
/**
38-
* Build the test result.
38+
* Compile the JavaScript test file.
3939
*/
40-
public function build(): void
40+
public function compile(): void
4141
{
4242
$compiler = new Compiler($this->operations);
4343

@@ -55,6 +55,6 @@ public function build(): void
5555
*/
5656
public function __destruct()
5757
{
58-
$this->build();
58+
$this->compile();
5959
}
6060
}

0 commit comments

Comments
 (0)