mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
See #38716 git-svn-id: https://develop.svn.wordpress.org/trunk@39173 602fd350-edb4-49c9-b593-d223f7449a82
16 lines
401 B
PHP
16 lines
401 B
PHP
<?php
|
|
|
|
/**
|
|
* @group dependencies
|
|
* @group scripts
|
|
*/
|
|
class Tests_Dependencies_Backbonejs extends WP_UnitTestCase {
|
|
|
|
function test_exclusion_of_sourcemaps() {
|
|
$file = ABSPATH . WPINC . '/js/backbone.min.js';
|
|
$this->assertFileExists( $file );
|
|
$contents = trim( file_get_contents( $file ) );
|
|
$this->assertFalse( strpos( $contents, 'sourceMappingURL' ), 'Presence of sourceMappingURL' );
|
|
}
|
|
}
|