DotsUnited\BundleFu\Tests\BundleTest::testBundleJsFilesWithAssetServerUrl PHP Method

testBundleJsFilesWithAssetServerUrl() public method

    public function testBundleJsFilesWithAssetServerUrl()
    {
        $this->bundle->start();
        echo '<script src="https://assets.server.com/js/js_1.js?1000" type="text/javascript"></script>';
        $this->bundle->end();
        $this->bundle->render();
        $this->assertFileMatch($this->bundle->getJsBundlePath(), "function js_1()");
    }