1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 23:47:32 +02:00

chore(deps): bump glob-parent from 3.1.0 to 5.1.2 in /extensions/emoji/js (#3345)

* chore(deps): bump glob-parent in /extensions/emoji/js

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 3.1.0 to 5.1.2.
- [Release notes](https://github.com/gulpjs/glob-parent/releases)
- [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gulpjs/glob-parent/compare/v3.1.0...v5.1.2)

---
updated-dependencies:
- dependency-name: glob-parent
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Apply fixes from StyleCI

[ci skip] [skip ci]

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: StyleCI Bot <bot@styleci.io>
This commit is contained in:
dependabot[bot]
2022-03-11 18:11:20 -05:00
committed by GitHub
parent 379c06332a
commit 37a882118a
128 changed files with 9645 additions and 11730 deletions

View File

@@ -1,12 +1,10 @@
<?php
/*
* This file is part of flarum/testing-tests.
* This file is part of Flarum.
*
* Copyright (c) 2021 .
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Testing;

View File

@@ -1,5 +1,12 @@
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Testing;
use Flarum\Database\Migration;
@@ -7,4 +14,4 @@ use Illuminate\Database\Schema\Blueprint;
return Migration::createTable('testing_table', function (Blueprint $table) {
$table->string('id', 100)->primary();
});
});

View File

@@ -14,7 +14,6 @@ use Flarum\Foundation\Config;
use Flarum\Settings\SettingsRepositoryInterface;
use Flarum\Testing\integration\TestCase;
use Flarum\User\User;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
class TestCaseTest extends TestCase
@@ -27,7 +26,7 @@ class TestCaseTest extends TestCase
$this->app();
$this->assertEquals(1, User::query()->count());
$user = User::find(1);
$this->assertEquals('admin', $user->username);
@@ -186,7 +185,7 @@ class TestCaseTest extends TestCase
public function routes_added_by_current_extension_accessible()
{
$this->extension('flarum-testing-tests');
$response = $this->send(
$this->request('GET', '/added-by-extension')
);
@@ -208,4 +207,4 @@ class TestCaseTest extends TestCase
$this->assertEquals($expected, $baseAssetsUrl);
}
}
}