13
13
// limitations under the License.
14
14
15
15
import assert from 'node:assert'
16
- import fs from 'node:fs/promises'
17
16
import { test , describe } from 'node:test'
18
- import { globby } from '../build/index.js'
17
+ import { globby , fs , path } from '../build/index.js'
18
+
19
+ const __dirname = path . dirname ( new URL ( import . meta. url ) . pathname )
19
20
20
21
describe ( 'extra' , ( ) => {
21
22
test ( 'every file should have a license' , async ( ) => {
23
+ const copyright = await fs . readFile (
24
+ path . resolve ( __dirname , 'fixtures/copyright.txt' ) ,
25
+ 'utf8'
26
+ )
22
27
const files = await globby ( [ '**/*.{js,mjs,ts}' , '!**/*polyfill.js' ] , {
23
28
gitignore : true ,
24
29
onlyFiles : true ,
@@ -28,23 +33,7 @@ describe('extra', () => {
28
33
for ( const file of files ) {
29
34
const content = await fs . readFile ( file , 'utf8' )
30
35
assert (
31
- content
32
- . replace ( / \d { 4 } / g, 'YEAR' )
33
- . includes (
34
- '// Copyright YEAR Google LLC\n' +
35
- '//\n' +
36
- '// Licensed under the Apache License, Version 2.0 (the "License");\n' +
37
- '// you may not use this file except in compliance with the License.\n' +
38
- '// You may obtain a copy of the License at\n' +
39
- '//\n' +
40
- '// https://www.apache.org/licenses/LICENSE-2.0\n' +
41
- '//\n' +
42
- '// Unless required by applicable law or agreed to in writing, software\n' +
43
- '// distributed under the License is distributed on an "AS IS" BASIS,\n' +
44
- '// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n' +
45
- '// See the License for the specific language governing permissions and\n' +
46
- '// limitations under the License.'
47
- ) ,
36
+ content . replace ( / \d { 4 } / g, 'YEAR' ) . includes ( copyright ) ,
48
37
`No license header in ${ file } .`
49
38
)
50
39
}
0 commit comments