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

testBundleJsFilesShouldIncludeJsContent() public method

    public function testBundleJsFilesShouldIncludeJsContent()
    {
        $this->bundle->start();
        echo $this->includeAll();
        $this->bundle->end();
        $this->bundle->render();
        $this->assertFileMatch($this->bundle->getJsBundlePath(), "function js_1()");
    }