blob: 67d5d0c3116b4ad43928fa74e28ae5949b965cc5 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Tests that snippet scripts are evaluated in REPL mode\n`);
await TestRunner.showPanel('sources');
TestRunner.addSniffer(TestRunner.RuntimeAgent, "invoke_evaluate", function(args) {
TestRunner.addResult("Called RuntimeAgent.invoke_evaluate");
TestRunner.addResult("Value of 'replMode': " + args.replMode);
});
const uiSourceCode = await Snippets.project.createFile('', null, '');
await uiSourceCode.rename('Snippet1');
uiSourceCode.setWorkingCopy('let a = 1; let a = 2;');
await Snippets.evaluateScriptSnippet(uiSourceCode);
TestRunner.completeTest();
})();