test: add canary specific expectation file (#12383)

This commit is contained in:
Alex Rudenko
2024-05-03 10:31:21 +02:00
committed by GitHub
parent dc303f061b
commit 0af4664b8a
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
// Modifies test/TestExpectations.json in place.
import fs from 'fs';
const source = 'test/TestExpectations.json';
const testExpectations = JSON.parse(fs.readFileSync(source, 'utf-8'));
const canaryTestExpectations = JSON.parse(
fs.readFileSync('test/CanaryTestExpectations.json', 'utf-8')
);
fs.writeFileSync(
source,
JSON.stringify([...testExpectations, ...canaryTestExpectations], null, 2)
);